From 6b36ba1a2cf6b5b2220fc5d77785799f2b474d16 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 15 Oct 2025 18:27:14 -0400 Subject: [PATCH 01/41] Initial revision of ReferenceLengthExpression in VCF annotator --- src/ga4gh/vrs/extras/annotator/vcf.py | 83 +++++++++++++++++++++++---- 1 file changed, 72 insertions(+), 11 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index a0e93cb1..4f402028 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -16,7 +16,7 @@ from ga4gh.vrs import VRS_VERSION, __version__ from ga4gh.vrs.dataproxy import _DataProxy from ga4gh.vrs.extras.translator import AlleleTranslator -from ga4gh.vrs.models import Allele +from ga4gh.vrs.models import Allele, Range _logger = logging.getLogger(__name__) @@ -36,6 +36,8 @@ class FieldName(str, Enum): STARTS_FIELD = "VRS_Starts" ENDS_FIELD = "VRS_Ends" STATES_FIELD = "VRS_States" + LENGTHS_FIELD = "VRS_Lengths" + REPEAT_SUBUNIT_LENGTHS_FIELD = "VRS_RepeatSubunitLengths" ERROR_FIELD = "VRS_Error" def default_value(self) -> Literal[".", -1]: @@ -43,7 +45,11 @@ def default_value(self) -> Literal[".", -1]: :return: either ``"."`` or ``-1`` """ - if self in (FieldName.IDS_FIELD, FieldName.STATES_FIELD, FieldName.ERROR_FIELD): + if self in ( + FieldName.IDS_FIELD, + FieldName.STATES_FIELD, + FieldName.ERROR_FIELD, + ): return "." return -1 @@ -187,6 +193,24 @@ def _update_vcf_header( f"corresponding to the GT indexes of the {info_field_desc} alleles" ), ) + vcf.header.info.add( + FieldName.LENGTHS_FIELD.value, + info_field_num, + "Integer", + ( + "The length values from ReferenceLengthExpression states for the GA4GH VRS " + f"Alleles corresponding to the GT indexes of the {info_field_desc} alleles" + ), + ) + vcf.header.info.add( + FieldName.REPEAT_SUBUNIT_LENGTHS_FIELD.value, + info_field_num, + "Integer", + ( + "The repeat subunit length values from ReferenceLengthExpression states for the GA4GH VRS " + f"Alleles corresponding to the GT indexes of the {info_field_desc} alleles" + ), + ) @use_ga4gh_compute_identifier_when(VrsObjectIdentifierIs.MISSING) def annotate( @@ -244,6 +268,8 @@ def annotate( FieldName.STARTS_FIELD, FieldName.ENDS_FIELD, FieldName.STATES_FIELD, + FieldName.LENGTHS_FIELD, + FieldName.REPEAT_SUBUNIT_LENGTHS_FIELD, ] else: # no INFO field names need to be designated if not producing an annotated VCF @@ -275,8 +301,9 @@ def annotate( if output_vcf_path and vcf_out: for k in additional_info_fields: + # Convert falsy (""|None) values to None. pysam outputs "." for missing values record.info[k.value] = [ - value or k.default_value() for value in vrs_field_data[k.value] + v if v else None for v in vrs_field_data[k.value] ] vcf_out.write(record) @@ -369,20 +396,54 @@ def _get_vrs_object( vrs_field_data[FieldName.IDS_FIELD].append(allele_id) if vrs_attributes: + # Initialize fields with None for missing values + # pysam will convert None to "." in VCF output + start = end = None + alt = None + length = repeat_subunit_length = None + if vrs_obj: + # Common fields for all state types start = vrs_obj.location.start end = vrs_obj.location.end - alt = ( - str(vrs_obj.state.sequence.root) - if vrs_obj.state.sequence - else "" - ) - else: - start = end = alt = "" + + # State-specific fields + state_type = vrs_obj.state.type + + if state_type == "LiteralSequenceExpression": + # For LSE, populate sequence in STATES + alt = ( + str(vrs_obj.state.sequence.root) + if vrs_obj.state.sequence + else None + ) + # TODO TODO Leave in the `sequence` when the length of it is less than 15 characters + elif state_type in ( + "ReferenceLengthExpression", + "LengthExpression", + ): + # For RLE and LE, populate length + length = vrs_obj.state.length + if length is None: + err_msg = f"{state_type} requires a non-empty length: {vcf_coords}" + raise VcfAnnotatorError(err_msg) + if isinstance(length, Range): + err_msg = f"{state_type} with Range length not supported for VCF annotation: {vcf_coords}" + raise VcfAnnotatorError(err_msg) + # For RLE only, also populate repeatSubunitLength + if state_type == "ReferenceLengthExpression": + repeat_subunit_length = vrs_obj.state.repeatSubunitLength + else: + err_msg = f"Unsupported state type '{state_type}' for VCF annotation: {vcf_coords}" + raise VcfAnnotatorError(err_msg) vrs_field_data[FieldName.STARTS_FIELD].append(start) vrs_field_data[FieldName.ENDS_FIELD].append(end) vrs_field_data[FieldName.STATES_FIELD].append(alt) + vrs_field_data[FieldName.LENGTHS_FIELD].append(length) + vrs_field_data[FieldName.REPEAT_SUBUNIT_LENGTHS_FIELD].append( + repeat_subunit_length + ) def _get_vrs_data( self, @@ -444,7 +505,7 @@ def _get_vrs_data( allele_collection, vrs_field_data, assembly, - vrs_data_key=data, + vrs_data_key=data, # TODO unused? vrs_attributes=vrs_attributes, require_validation=require_validation, ) From 76cd5652c127034d29d13c491b3e0bad5ed2d56a Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 15 Oct 2025 18:44:32 -0400 Subject: [PATCH 02/41] No longer need FieldName.default_value since we can rely on pysam --- src/ga4gh/vrs/extras/annotator/vcf.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index 4f402028..63783dea 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -40,19 +40,6 @@ class FieldName(str, Enum): REPEAT_SUBUNIT_LENGTHS_FIELD = "VRS_RepeatSubunitLengths" ERROR_FIELD = "VRS_Error" - def default_value(self) -> Literal[".", -1]: - """Provide value to use for default/null case in VCF INFO field - - :return: either ``"."`` or ``-1`` - """ - if self in ( - FieldName.IDS_FIELD, - FieldName.STATES_FIELD, - FieldName.ERROR_FIELD, - ): - return "." - return -1 - # VCF character escape map VCF_ESCAPE_MAP = str.maketrans( From 4f22083e5328e61ab926ea854454e1a948ae2412 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 16 Oct 2025 16:08:59 -0400 Subject: [PATCH 03/41] Fix INFO field setting to allow 0 for Integers. --- src/ga4gh/vrs/extras/annotator/vcf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index 63783dea..c51fdd6c 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -288,9 +288,10 @@ def annotate( if output_vcf_path and vcf_out: for k in additional_info_fields: - # Convert falsy (""|None) values to None. pysam outputs "." for missing values + # Convert "" and None values (but not 0) to None. + # Pysam outputs "." for missing values. record.info[k.value] = [ - v if v else None for v in vrs_field_data[k.value] + None if v in ("", None) else v for v in vrs_field_data[k.value] ] vcf_out.write(record) From 94cc27756a55671b5ec93f36cf03773ce5199d4d Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 16 Oct 2025 16:45:25 -0400 Subject: [PATCH 04/41] Reworking the RLE flow --- src/ga4gh/vrs/normalize.py | 38 +++++++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index 17b40c52..feb866b8 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -130,23 +130,39 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): ) # Trim common flanking sequence from Allele sequences. + is_reference_allele = False try: trim_ival, trim_alleles = _normalize( ref_seq, ival, alleles, mode=None, trim=True ) except ValueError: - # Occurs for ref agree Alleles (when alt = ref) - len_trimmed_ref = len_trimmed_alt = 0 - # TODO: Return RLE for ref agree Alleles - else: - trim_ref_seq = ref_seq[trim_ival[0] : trim_ival[1]] - trim_alt_seq = trim_alleles[1] - len_trimmed_ref = len(trim_ref_seq) - len_trimmed_alt = len(trim_alt_seq) + # bioutils._normalize raises ValueError for reference alleles (REF==ALT) + # Verify this is actually a reference allele before treating it as such + ref_at_location = ref_seq[start.value : end.value] + alt_seq = alleles[1] + if ref_at_location == alt_seq: + is_reference_allele = True + else: + # Re-raise if this is a different ValueError (shouldn't happen with valid input) + raise + + # Handle reference alleles per VRS spec step 2.a: + # Return RLE with length and repeatSubunitLength both set to location length + if is_reference_allele: + location_length = end.value - start.value + new_allele = pydantic_copy(input_allele) + return _define_rle_allele( + new_allele, + length=location_length, + repeat_subunit_length=location_length, + rle_seq_limit=rle_seq_limit, + extended_alt_seq=ref_at_location, + ) - # Compare the two allele sequences - if not len_trimmed_ref and not len_trimmed_alt: - return input_allele + trim_ref_seq = ref_seq[trim_ival[0] : trim_ival[1]] + trim_alt_seq = trim_alleles[1] + len_trimmed_ref = len(trim_ref_seq) + len_trimmed_alt = len(trim_alt_seq) new_allele = pydantic_copy(input_allele) From d04850194a6e9d98b9e4c315d5c4d4c27bbd3388 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 16 Oct 2025 16:58:21 -0400 Subject: [PATCH 05/41] Move around code some more --- src/ga4gh/vrs/normalize.py | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index feb866b8..a0b5fa28 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -130,34 +130,28 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): ) # Trim common flanking sequence from Allele sequences. - is_reference_allele = False try: trim_ival, trim_alleles = _normalize( ref_seq, ival, alleles, mode=None, trim=True ) - except ValueError: - # bioutils._normalize raises ValueError for reference alleles (REF==ALT) - # Verify this is actually a reference allele before treating it as such + except ValueError as e: + # bioutils _normalize raises ValueError for reference alleles when in trim=True. + # But verify this is actually a reference allele before treating it as such. ref_at_location = ref_seq[start.value : end.value] alt_seq = alleles[1] if ref_at_location == alt_seq: - is_reference_allele = True - else: - # Re-raise if this is a different ValueError (shouldn't happen with valid input) - raise - - # Handle reference alleles per VRS spec step 2.a: - # Return RLE with length and repeatSubunitLength both set to location length - if is_reference_allele: - location_length = end.value - start.value - new_allele = pydantic_copy(input_allele) - return _define_rle_allele( - new_allele, - length=location_length, - repeat_subunit_length=location_length, - rle_seq_limit=rle_seq_limit, - extended_alt_seq=ref_at_location, - ) + # Return RLE with length and repeatSubunitLength both set to ref (and alt) length + new_allele = pydantic_copy(input_allele) + return _define_rle_allele( + new_allele, + length=len(ref_at_location), + repeat_subunit_length=len(ref_at_location), + rle_seq_limit=rle_seq_limit, + extended_alt_seq=ref_at_location, + ) + # Re-raise if this is a different ValueError (shouldn't happen with valid input) + msg = f"Unexpected bioutils trim error for non reference allele: ref='{ref_at_location}', alt='{alt_seq}'" + raise ValueError(msg) from e trim_ref_seq = ref_seq[trim_ival[0] : trim_ival[1]] trim_alt_seq = trim_alleles[1] From 6051b11f83e2b011e609730d1f08a80012953536 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 22 Oct 2025 14:26:16 -0400 Subject: [PATCH 06/41] Adding some tests --- .../cassettes/test_annotate_vcf_rle.yaml | 564 ++++++++++++++++++ .../cassettes/test_reference_allele_rle.yaml | 256 ++++++++ tests/extras/data/test_rle.vcf | 9 + tests/extras/test_allele_translator.py | 40 ++ tests/extras/test_annotate_vcf.py | 174 ++++++ 5 files changed, 1043 insertions(+) create mode 100644 tests/extras/cassettes/test_annotate_vcf_rle.yaml create mode 100644 tests/extras/cassettes/test_reference_allele_rle.yaml create mode 100644 tests/extras/data/test_rle.vcf diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml new file mode 100644 index 00000000..f5179888 --- /dev/null +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -0,0 +1,564 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: + Connection: + - close + Content-Length: + - '4' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: + Connection: + - close + Content-Length: + - '4' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 14:55:06 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml new file mode 100644 index 00000000..0df00547 --- /dev/null +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -0,0 +1,256 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Thu, 16 Oct 2025 21:00:29 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/extras/data/test_rle.vcf b/tests/extras/data/test_rle.vcf new file mode 100644 index 00000000..b14eb45b --- /dev/null +++ b/tests/extras/data/test_rle.vcf @@ -0,0 +1,9 @@ +##fileformat=VCFv4.2 +##reference=GRCh38 +##contig= +##INFO= +##INFO= +##INFO= +#CHROM POS ID REF ALT QUAL FILTER INFO +1 100210778 . AA A . . VARID=1663061;VARNAME=NM_001918.5(DBT):c.940-7del;VARTYPE=Deletion +1 102995989 . CTTT CTTTCTTT . . VARID=3727769;VARNAME=NM_001854.4(COL11A1):c.2292_2295dup;VARTYPE=Duplication diff --git a/tests/extras/test_allele_translator.py b/tests/extras/test_allele_translator.py index c336ac4b..9caa93b5 100644 --- a/tests/extras/test_allele_translator.py +++ b/tests/extras/test_allele_translator.py @@ -856,6 +856,46 @@ def test_to_hgvs_iri_ref_keyerror(tlr): assert str(e.value) == "'ga4gh:seqrefs.jsonc#/NM_181798.1'" +@pytest.mark.vcr +def test_reference_allele_rle(tlr): + """Test that reference alleles (REF==ALT) are normalized to ReferenceLengthExpression.""" + # Test with gnomad format + gnomad_ref_allele = "1-100210778-AA-AA" + allele = tlr._from_gnomad(gnomad_ref_allele) + + expected = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 100210777, + "end": 100210779, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 2, + "repeatSubunitLength": 2, + "sequence": "AA", + }, + } + + assert allele.model_dump(exclude_none=True) == expected + + # Test with SPDI format (REF==ALT) + spdi_ref_allele = "NC_000001.11:100210777:AA:AA" + allele_spdi = tlr._from_spdi(spdi_ref_allele) + + assert allele_spdi.model_dump(exclude_none=True) == expected + + # Test round-trip to SPDI + to_spdi = tlr.translate_to(allele_spdi, "spdi", ref_seq_limit=None) + assert len(to_spdi) == 1 + assert to_spdi[0] == spdi_ref_allele + + # TODO: Readd these tests # @pytest.mark.vcr # def test_errors(tlr): diff --git a/tests/extras/test_annotate_vcf.py b/tests/extras/test_annotate_vcf.py index 5fb0072c..ebd6e2c4 100644 --- a/tests/extras/test_annotate_vcf.py +++ b/tests/extras/test_annotate_vcf.py @@ -6,6 +6,7 @@ import re from pathlib import Path +import pysam import pytest from ga4gh.vrs import VRS_VERSION, __version__ @@ -216,3 +217,176 @@ def test_get_vrs_object_invalid_input(vcf_annotator: VcfAnnotator, caplog): "7-140753336-C-T", [], {}, "GRCh38", require_validation=True ) assert invalid_ref_seq_msg in caplog.text + + +@pytest.mark.vcr +def test_annotate_vcf_rle(vcf_annotator: VcfAnnotator, vcr_cassette): + """Test VCF annotation with ReferenceLengthExpression states. + + Tests two variants that should produce ReferenceLengthExpression states: + 1. Deletion (1:100210778 AA>A): Expected RLE with length=1, repeatSubunitLength=1 + 2. Duplication (1:102995989 CTTT>CTTTCTTT): Expected RLE with length=8, repeatSubunitLength=4 + """ + vcr_cassette.allow_playback_repeats = False + input_vcf = TEST_DATA_DIR / "test_rle.vcf" + output_vcf = TEST_DATA_DIR / "test_rle_output.vcf" + output_vrs_pkl = TEST_DATA_DIR / "test_rle_output.pkl" + + # Annotate the VCF with VRS attributes enabled + vcf_annotator.annotate( + input_vcf, output_vcf, vrs_attributes=True, output_pkl_path=output_vrs_pkl + ) + + # Read the output VCF and verify RLE fields are present + with gzip.open(output_vcf, "rt") as vcf_out: + vcf = pysam.VariantFile(vcf_out) + + # Verify the RLE-specific header fields were added + assert "VRS_Lengths" in vcf.header.info + assert "VRS_RepeatSubunitLengths" in vcf.header.info + + variants = list(vcf) + assert len(variants) == 2 + + # Test variant 1: Deletion (AA>A) + # Expected: length=1, repeatSubunitLength=1 + deletion_variant = variants[0] + assert deletion_variant.chrom == "1" + assert deletion_variant.pos == 100210778 + assert deletion_variant.ref == "AA" + assert deletion_variant.alts == ("A",) + + # Check VRS attributes for deletion + assert "VRS_Allele_IDs" in deletion_variant.info + assert "VRS_Starts" in deletion_variant.info + assert "VRS_Ends" in deletion_variant.info + assert "VRS_States" in deletion_variant.info + assert "VRS_Lengths" in deletion_variant.info + assert "VRS_RepeatSubunitLengths" in deletion_variant.info + + # Expected values for deletion RLE + # REF should have length=2, repeatSubunitLength=1 + # ALT should have length=1, repeatSubunitLength=1 + vrs_lengths = deletion_variant.info["VRS_Lengths"] + vrs_repeat_lengths = deletion_variant.info["VRS_RepeatSubunitLengths"] + assert len(vrs_lengths) == 2 # REF and ALT + assert len(vrs_repeat_lengths) == 2 + assert vrs_lengths == (2, 1) # REF: AA (length 2), ALT: A (length 1) + assert vrs_repeat_lengths == (1, 1) # Both are single-base repeats + + # Test variant 2: Duplication (CTTT>CTTTCTTT) + # Expected: length=8, repeatSubunitLength=4 + duplication_variant = variants[1] + assert duplication_variant.chrom == "1" + assert duplication_variant.pos == 102995989 + assert duplication_variant.ref == "CTTT" + assert duplication_variant.alts == ("CTTTCTTT",) + + # Check VRS attributes for duplication + assert "VRS_Allele_IDs" in duplication_variant.info + assert "VRS_Lengths" in duplication_variant.info + assert "VRS_RepeatSubunitLengths" in duplication_variant.info + + # Expected values for duplication RLE + # REF should have length=4, repeatSubunitLength=4 + # ALT should have length=8, repeatSubunitLength=4 + vrs_lengths = duplication_variant.info["VRS_Lengths"] + vrs_repeat_lengths = duplication_variant.info["VRS_RepeatSubunitLengths"] + assert len(vrs_lengths) == 2 # REF and ALT + assert len(vrs_repeat_lengths) == 2 + assert vrs_lengths == (4, 8) # REF: CTTT (length 4), ALT: CTTTCTTT (length 8) + assert vrs_repeat_lengths == (4, 4) # Both are 4-base repeats + + assert output_vrs_pkl.exists() + assert vcr_cassette.all_played + + +""" +Test VCF RLEs + +# Deletion: +{ + "in": { + "variation_id": "1663061", + "name": "NM_001918.5(DBT):c.940-7del", + "assembly_version": "38", + "accession": "NC_000001.11", + "vrs_class": "Allele", + "range_copies": [], + "fmt": "spdi", + "source": "NC_000001.11:100210777:AA:A", + "precedence": "1", + "variation_type": "Deletion", + "subclass_type": "SimpleAllele", + "cytogenetic": "1p21.2", + "chr": "1", + "variant_length": "1", + "mappings": [] + }, + "out": { + "id": "ga4gh:VA.r0qW5Jn6m42VHlDb1aOFChTBBbS_7zh1", + "type": "Allele", + "digest": "r0qW5Jn6m42VHlDb1aOFChTBBbS_7zh1", + "location": { + "id": "ga4gh:SL.4uMvoRYb3sR90KCxTkXKfzQHQvFo8tz-", + "type": "SequenceLocation", + "digest": "4uMvoRYb3sR90KCxTkXKfzQHQvFo8tz-", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO" + }, + "start": 100210777, + "end": 100210779 + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 1, + "sequence": "A", + "repeatSubunitLength": 1 + } + } +} + +# Repeat duplication +{ + "in": { + "variation_id": "3727769", + "name": "NM_001854.4(COL11A1):c.2292_2295dup (p.Gly766fs)", + "assembly_version": "38", + "accession": "NC_000001.11", + "vrs_class": "Allele", + "range_copies": [], + "fmt": "spdi", + "source": "NC_000001.11:102995988:CTTT:CTTTCTTT", + "precedence": "1", + "variation_type": "Duplication", + "subclass_type": "SimpleAllele", + "cytogenetic": "1p21.1", + "chr": "1", + "variant_length": "4", + "mappings": [] + }, + "out": { + "id": "ga4gh:VA.WXxaJ2ZsP_XfDma8a-nBi_VxMe9V20zJ", + "type": "Allele", + "digest": "WXxaJ2ZsP_XfDma8a-nBi_VxMe9V20zJ", + "location": { + "id": "ga4gh:SL.14ezn454AKxlhLHeeJbH3Dp7wJoQAml4", + "type": "SequenceLocation", + "digest": "14ezn454AKxlhLHeeJbH3Dp7wJoQAml4", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO" + }, + "start": 102995988, + "end": 102995992 + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 8, + "sequence": "CTTTCTTT", + "repeatSubunitLength": 4 + } + } +} +""" From c627c5028439f9f5db5a92f65725cd98852eef05 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 11 Nov 2025 02:29:17 -0500 Subject: [PATCH 07/41] Add more RLE test cases --- tests/cassettes/test_normalize_allele.yaml | 126 +- ...test_normalize_clinvar_rle_candidates.yaml | 1723 +++++++++++++++++ .../cassettes/test_reference_allele_rle.yaml | 73 + tests/extras/test_allele_translator.py | 5 +- tests/test_vrs_normalize.py | 251 ++- 5 files changed, 2132 insertions(+), 46 deletions(-) create mode 100644 tests/cassettes/test_normalize_clinvar_rle_candidates.yaml create mode 100644 tests/cassettes/test_reference_allele_rle.yaml diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index 17f3b63f..bae6dd33 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV response: @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -50,7 +50,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 response: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -80,7 +80,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP response: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -121,7 +121,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 response: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -151,7 +151,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 response: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -181,7 +181,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 response: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -211,7 +211,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 response: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -241,7 +241,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 response: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -271,7 +271,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 response: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -301,7 +301,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 response: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -331,7 +331,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 response: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -361,7 +361,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 response: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -391,7 +391,49 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: + Connection: + - close + Content-Length: + - '1035' + Content-Type: + - application/json + Date: + - Thu, 06 Nov 2025 06:05:59 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -405,7 +447,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -421,7 +463,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -435,7 +477,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -451,7 +493,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -465,7 +507,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -481,7 +523,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -495,7 +537,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -511,7 +553,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -525,7 +567,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -541,7 +583,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 response: @@ -555,7 +597,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -571,7 +613,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 response: @@ -585,7 +627,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -601,7 +643,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 response: @@ -615,7 +657,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -631,7 +673,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 response: @@ -645,7 +687,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Thu, 06 Nov 2025 06:05:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_clinvar_rle_candidates.yaml b/tests/cassettes/test_normalize_clinvar_rle_candidates.yaml new file mode 100644 index 00000000..876c3d9c --- /dev/null +++ b/tests/cassettes/test_normalize_clinvar_rle_candidates.yaml @@ -0,0 +1,1723 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: + Connection: + - close + Content-Length: + - '4' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: + Connection: + - close + Content-Length: + - '3' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: + Connection: + - close + Content-Length: + - '8' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: + Connection: + - close + Content-Length: + - '3' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: + Connection: + - close + Content-Length: + - '4' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: + Connection: + - close + Content-Length: + - '8' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: + Connection: + - close + Content-Length: + - '28' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 07:22:10 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/cassettes/test_reference_allele_rle.yaml b/tests/cassettes/test_reference_allele_rle.yaml new file mode 100644 index 00000000..e375b243 --- /dev/null +++ b/tests/cassettes/test_reference_allele_rle.yaml @@ -0,0 +1,73 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Wed, 05 Nov 2025 21:47:12 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 05 Nov 2025 21:47:12 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/extras/test_allele_translator.py b/tests/extras/test_allele_translator.py index 9caa93b5..c124c548 100644 --- a/tests/extras/test_allele_translator.py +++ b/tests/extras/test_allele_translator.py @@ -858,7 +858,10 @@ def test_to_hgvs_iri_ref_keyerror(tlr): @pytest.mark.vcr def test_reference_allele_rle(tlr): - """Test that reference alleles (REF==ALT) are normalized to ReferenceLengthExpression.""" + """Test that reference alleles (REF==ALT) are normalized to ReferenceLengthExpression. + + Added to address https://github.com/ga4gh/vrs-python/issues/587 + """ # Test with gnomad format gnomad_ref_allele = "1-100210778-AA-AA" allele = tlr._from_gnomad(gnomad_ref_allele) diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index 9bf2006f..7cab5f5d 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -8,7 +8,8 @@ # |A| a1 # -allele_dict = { + +allele_dict1 = { "location": { "end": 26090951, "start": 26090950, @@ -22,6 +23,25 @@ "type": "Allele", } +allele_dict1_normalized = { + "location": { + "end": 26090951, + "start": 26090950, + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV", + }, + "type": "SequenceLocation", + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 1, + "sequence": "C", + "repeatSubunitLength": 1, + }, + "type": "Allele", +} + allele_dict2 = { "type": "Allele", @@ -138,12 +158,50 @@ }, } +# Another same-as-reference allele +allele_dict6 = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 100210777, + "end": 100210779, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "AA", + }, +} + +allele_dict6_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 100210777, + "end": 100210779, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 2, + "repeatSubunitLength": 2, + "sequence": "AA", + }, +} + @pytest.mark.vcr def test_normalize_allele(rest_dataproxy): - allele1 = models.Allele(**allele_dict) + # Test that a same-as-reference LSE is normalized to an RLE + allele1 = models.Allele(**allele_dict1) allele2 = normalize(allele1, rest_dataproxy) - assert allele1 == allele2 + assert allele2 == models.Allele(**allele_dict1_normalized) allele1 = models.Allele(**allele_dict2) allele2 = normalize(allele1, rest_dataproxy, rle_seq_limit=0) @@ -164,3 +222,190 @@ def test_normalize_allele(rest_dataproxy): allele5 = models.Allele(**allele_dict5) allele5_after_norm = normalize(allele5, rest_dataproxy) assert allele5_after_norm == models.Allele(**allele_dict5_normalized) + + # Same-as-reference allele (REF==ALT) + # Added to address https://github.com/ga4gh/vrs-python/issues/587 + allele6 = models.Allele(**allele_dict6) + allele6_after_norm = normalize(allele6, rest_dataproxy) + assert allele6_after_norm == models.Allele(**allele_dict6_normalized) + + +# Simple deletion. ClinVar 3385321 +# SPDI: NC_000001.11:66926:G: +clinvar_deletion = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 66926, + "end": 66927, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +clinvar_deletion_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 66926, + "end": 66927, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 0, + "repeatSubunitLength": 1, + }, +} + +# Microsatellite deletion: ClinVar 4286633 +# SPDI: NC_000001.11:766399:AATAAATA:AATA +clinvar_microsatellite = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 766400, + "end": 766404, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +clinvar_microsatellite_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 766399, + "end": 766407, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 4, + "repeatSubunitLength": 4, + }, +} + +# Tandem repeat deletion. ClinVar 1658573 +# SPDI: NC_000001.11:930136:CTCCTCCT:CTCCT +clinvar_tandem_repeat = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 930137, + "end": 930140, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +clinvar_tandem_repeat_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 930136, + "end": 930144, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 5, + "repeatSubunitLength": 3, + }, +} + +# Repeat subunit insertion in microsatellite region. ClinVar 2672290 +# SPDI: NC_000001.11:1752908:CCTCCTCCTCCTCCTCCTCCTCCTCCTC:CCTCCTCCTCCTCCTCCTCCTCCTCCTCCTC +# This tests the circular expansion logic for insertions in repeat regions +clinvar_microsatellite_insertion = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752908, + "end": 1752908, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CCT", + }, +} + +clinvar_microsatellite_insertion_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752908, + "end": 1752936, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 31, + "repeatSubunitLength": 3, + }, +} + + +@pytest.mark.vcr +def test_normalize_clinvar_rle_candidates(rest_dataproxy): + """Test normalization of ClinVar variants that should produce RLE. + + These test cases are pulled from ClinVar GRCh38 VCF. + """ + # Simple deletion: AG>A (deletes G) + deletion = models.Allele(**clinvar_deletion) + deletion_norm = normalize(deletion, rest_dataproxy, rle_seq_limit=0) + assert deletion_norm == models.Allele(**clinvar_deletion_normalized) + + # Microsatellite: GAATA>G (deletes AATA repeat) + microsatellite = models.Allele(**clinvar_microsatellite) + microsatellite_norm = normalize(microsatellite, rest_dataproxy, rle_seq_limit=0) + assert microsatellite_norm == models.Allele(**clinvar_microsatellite_normalized) + + # Tandem repeat: TCTC>T (deletes CTC repeat) + tandem_repeat = models.Allele(**clinvar_tandem_repeat) + tandem_repeat_norm = normalize(tandem_repeat, rest_dataproxy, rle_seq_limit=0) + assert tandem_repeat_norm == models.Allele(**clinvar_tandem_repeat_normalized) + + # Repeat subunit insertion in microsatellite region: C>CCCT (inserts CCT in CTC[10] region) + microsatellite_insertion = models.Allele(**clinvar_microsatellite_insertion) + microsatellite_insertion_norm = normalize( + microsatellite_insertion, rest_dataproxy, rle_seq_limit=0 + ) + assert microsatellite_insertion_norm == models.Allele( + **clinvar_microsatellite_insertion_normalized + ) From 499002e63b9b67fe34c61a51b51a9f55bd33f7c2 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 11 Nov 2025 02:31:24 -0500 Subject: [PATCH 08/41] Fix test_allele_translator for RLE NC_000013.11:g.32936732= --- ...s[NC_000013.11:g.32936732=-expected0].yaml | 127 ++++++++++-------- tests/extras/test_allele_translator.py | 11 +- 2 files changed, 79 insertions(+), 59 deletions(-) diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index 4c1a937b..dd62eb86 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -9,7 +9,49 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: + Connection: + - close + Content-Length: + - '1002' + Content-Type: + - application/json + Date: + - Tue, 11 Nov 2025 07:24:03 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 response: @@ -23,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:49:30 GMT + - Tue, 11 Nov 2025 07:24:03 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,21 +81,33 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT response: body: - string: C + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" headers: Connection: - close Content-Length: - - '1' + - '1002' Content-Type: - - text/plain; charset=utf-8 + - application/json Date: - - Wed, 16 Apr 2025 22:49:30 GMT + - Tue, 11 Nov 2025 07:24:03 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,62 +123,23 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 response: body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' + string: C headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests + - close + Content-Length: + - '1' Content-Type: - - text/plain + - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:49:30 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 322CF8979F5E85B5000050CD47341D44.1.1.m_5 - NCBI-SID: - - B4DD900AE926F06D_8D6DSID - Referrer-Policy: - - origin-when-cross-origin + - Tue, 11 Nov 2025 07:24:03 GMT Server: - - Finatra - Set-Cookie: - - ncbi_sid=B4DD900AE926F06D_8D6DSID; domain=.nih.gov; path=/; expires=Thu, 16 - Apr 2026 22:49:30 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip + - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK diff --git a/tests/extras/test_allele_translator.py b/tests/extras/test_allele_translator.py index c124c548..93eae5d9 100644 --- a/tests/extras/test_allele_translator.py +++ b/tests/extras/test_allele_translator.py @@ -535,8 +535,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000013.11:g.32936732=", { - "digest": "GJ2JySBMXePcV2yItyvCfbGBUoawOBON", - "id": "ga4gh:VA.GJ2JySBMXePcV2yItyvCfbGBUoawOBON", + "digest": "DlGuOFkPMxweVP99ZAjfrAV3iZRB-AB3", + "id": "ga4gh:VA.DlGuOFkPMxweVP99ZAjfrAV3iZRB-AB3", "location": { "digest": "28YsnRvD40gKu1x3nev0gRzRz-5OTlpS", "end": 32936732, @@ -548,7 +548,12 @@ def test_to_spdi_with_ref(tlr): "start": 32936731, "type": "SequenceLocation", }, - "state": {"sequence": "C", "type": "LiteralSequenceExpression"}, + "state": { + "length": 1, + "repeatSubunitLength": 1, + "sequence": "C", + "type": "ReferenceLengthExpression", + }, "type": "Allele", }, ), From 4db6c3c77e7b6d4ad0c239208b33f1be385fd7d4 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 01:33:21 -0500 Subject: [PATCH 09/41] remove id/digest testing from allele test --- ...NC_000007.14:g.55181220del-expected2].yaml | 65 +- ...g.55181230_55181231insGGCT-expected3].yaml | 84 +- ...NC_000007.14:g.55181320A>T-expected1].yaml | 57 +- ...NC_000013.11:g.32316467dup-expected5].yaml | 69 +- ....11:g.32331093_32331094dup-expected4].yaml | 167 ++-- ...s[NC_000013.11:g.32936732=-expected0].yaml | 137 +-- ....10:g.289464_289465insCACA-expected8].yaml | 114 ++- ...0019.10:g.289485_289500del-expected9].yaml | 110 ++- ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 60 +- ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 89 +- .../cassettes/test_reference_allele_rle.yaml | 14 +- .../extras/cassettes/test_rle_seq_limit.yaml | 817 +++++++++++++++--- tests/extras/test_allele_translator.py | 47 - 13 files changed, 1121 insertions(+), 709 deletions(-) diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index 3db8120f..7a25af07 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:53 GMT + - Tue, 11 Nov 2025 08:01:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:53 GMT + - Tue, 11 Nov 2025 08:01:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 response: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:53 GMT + - Tue, 11 Nov 2025 08:01:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 response: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:53 GMT + - Tue, 11 Nov 2025 08:01:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 response: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:53 GMT + - Tue, 11 Nov 2025 08:01:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,18 +159,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyMDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw + 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkCuECAAAA///iAgAAAP//AwD6HdFpWgAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -187,20 +183,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:52 GMT + - Tue, 11 Nov 2025 08:01:50 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B964500005E6AB092EF31.1.1.m_5 + - 1D3363338DB1703500005B3B54D22940.1.1.m_7 NCBI-SID: - - 9518E44C404B0665_99DFSID + - 9D575C3A56F0B52F_725FSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=9518E44C404B0665_99DFSID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:53 GMT + - ncbi_sid=9D575C3A56F0B52F_725FSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -228,18 +224,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyMDXQjDxEDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQKcXd3dHQHghBnZ8cQ9xB3ZyDgAgAAAP// + 4gIAAAD//wMAmg0v4W4AAAA= headers: Access-Control-Allow-Origin: - '*' @@ -256,20 +249,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:53 GMT + - Tue, 11 Nov 2025 08:01:50 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000376AB306431D.1.1.m_5 + - 1D340441F938F2D500005E3E3986EE98.1.1.m_7 NCBI-SID: - - 27ADB2B6DC09096B_8332SID + - 81C6ECE1C93CC25E_3C41SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=27ADB2B6DC09096B_8332SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:53 GMT + - ncbi_sid=81C6ECE1C93CC25E_3C41SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index c09d0a91..3faf5c92 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:54 GMT + - Tue, 11 Nov 2025 08:01:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:54 GMT + - Tue, 11 Nov 2025 08:01:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 response: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:54 GMT + - Tue, 11 Nov 2025 08:01:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,18 +99,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDI2NDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw + 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkcuYCAAAA///iAgAAAP//AwCoL8VLWgAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -127,20 +123,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:54 GMT + - Tue, 11 Nov 2025 08:01:52 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000506AB54515D5.1.1.m_5 + - 1D32708C99A7F4C500004C282C43D17F.1.1.m_7 NCBI-SID: - - D9FCF301C360421D_6179SID + - 3C256B1A0C3404EC_9114SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=D9FCF301C360421D_6179SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:54 GMT + - ncbi_sid=3C256B1A0C3404EC_9114SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -148,7 +144,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -168,18 +164,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDI2MDXQjD1EDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydnYMcQ9xdwaCECAKcQ5xd3fmAgAAAP// + 4gIAAAD//wMAmUGUnW4AAAA= headers: Access-Control-Allow-Origin: - '*' @@ -196,20 +189,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:54 GMT + - Tue, 11 Nov 2025 08:01:52 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C500005068826B1155.1.1.m_5 + - 1D3363338DB1703500004E3B56252F11.1.1.m_7 NCBI-SID: - - 6F671951CC211956_8211SID + - C1E5BE22BF4A04D9_D7BDSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=6F671951CC211956_8211SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:55 GMT + - ncbi_sid=C1E5BE22BF4A04D9_D7BDSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -217,7 +210,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -237,18 +230,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyNzXQjD2EDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydw9x5gIAAAD//+ICAAAA//8DAImcWFxd + AAAA headers: Access-Control-Allow-Origin: - '*' @@ -265,20 +255,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:55 GMT + - Tue, 11 Nov 2025 08:01:52 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000326AB9411055.1.1.m_5 + - 1D32708C99A7F4C5000045282DCD5156.1.1.m_7 NCBI-SID: - - 016B59280C62811E_AA13SID + - 3C4BD15A5AC6DDC8_0093SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=016B59280C62811E_AA13SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:55 GMT + - ncbi_sid=3C4BD15A5AC6DDC8_0093SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index 68c12196..e20cecfa 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 response: @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:51 GMT + - Tue, 11 Nov 2025 08:01:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -50,7 +50,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 response: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:51 GMT + - Tue, 11 Nov 2025 08:01:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -80,18 +80,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDYyMDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw + 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkcuQCAAAA///iAgAAAP//AwD5Qh4fWgAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -108,20 +104,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:51 GMT + - Tue, 11 Nov 2025 08:01:49 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000306AACF15A8B.1.1.m_5 + - 1D340441F938F2D50000443E36CDB98F.1.1.m_7 NCBI-SID: - - D27BE21922DB341C_C7A9SID + - 4AA4A0E02A1F8886_9826SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=D27BE21922DB341C_C7A9SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:52 GMT + - ncbi_sid=4AA4A0E02A1F8886_9826SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:50 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -129,7 +125,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '2' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -149,18 +145,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDYyMDXQjDxEDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydHQGAUdn9xAgdHYGohB3LgAAAAD//+IC + AAAA//8DAKrmuS9uAAAA headers: Access-Control-Allow-Origin: - '*' @@ -177,20 +170,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:52 GMT + - Tue, 11 Nov 2025 08:01:50 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000376AAED0F690.1.1.m_5 + - 1D340441F938F2D50000543E3778FD17.1.1.m_7 NCBI-SID: - - B02A0DE89C6FB2A8_F15ESID + - 0DAD2688A609A28F_8E6CSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=B02A0DE89C6FB2A8_F15ESID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:52 GMT + - ncbi_sid=0DAD2688A609A28F_8E6CSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:50 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -198,7 +191,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index 79f5f4e0..3ea6fae0 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:58 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:58 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 response: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:58 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 response: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:58 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 response: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:58 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,18 +159,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NDMxMzc10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRy5AIAAAD//+ICAAAA//8DABNU0u5bAAAA headers: Access-Control-Allow-Origin: - '*' @@ -187,20 +183,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:57 GMT + - Tue, 11 Nov 2025 08:01:55 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C500003E6886B10019.1.1.m_5 + - 1D340441F938F2D50000433E43EA7ECA.1.1.m_7 NCBI-SID: - - FCA6F5765141935F_9ED1SID + - CEEDE3BEFFA7848C_E0A6SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=FCA6F5765141935F_9ED1SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:58 GMT + - ncbi_sid=CEEDE3BEFFA7848C_E0A6SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -208,7 +204,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -228,18 +224,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NDMxMzc10Iw8JcwSM/N1+hOLEgMzWvWCE5owjILc7P + TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5HIMCXF3dwxxdnZ0dHQHQXcgkwsAAAD/ + /+ICAAAA//8DAG14V2hvAAAA headers: Access-Control-Allow-Origin: - '*' @@ -256,20 +249,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:58 GMT + - Tue, 11 Nov 2025 08:01:55 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B964500003F6AC5AD35EB.1.1.m_5 + - 1D340441F938F2D50000303E4513DDFF.1.1.m_7 NCBI-SID: - - 64DB9D0ADA04B826_34FESID + - 069B1D1655F5544F_D14DSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=64DB9D0ADA04B826_34FESID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:58 GMT + - ncbi_sid=069B1D1655F5544F_D14DSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -277,7 +270,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index ab9b89e4..5ec99528 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 response: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 response: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 response: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 response: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -189,7 +189,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 response: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -219,7 +219,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 response: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -249,7 +249,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 response: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -279,7 +279,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 response: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -309,7 +309,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 response: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -339,7 +339,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 response: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -369,7 +369,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 response: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -399,7 +399,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 response: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -429,7 +429,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 response: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -459,7 +459,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 response: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -489,7 +489,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 response: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -519,7 +519,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 response: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -549,18 +549,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMLY10Iw9JEwSM/N1+hOLEgMzWvWCE5owjILc7P + TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5ApBAlwAAAAA///iAgAAAP//AwBz5s6G + ZgAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -577,20 +574,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:55 GMT + - Tue, 11 Nov 2025 08:01:53 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000356ABC7A110E.1.1.m_5 + - 1D340441F938F2D50000273E3E46ECD4.1.1.m_7 NCBI-SID: - - 1FC73B1280B38A84_E7AESID + - 7544EED11D261FC9_D756SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=1FC73B1280B38A84_E7AESID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:56 GMT + - ncbi_sid=7544EED11D261FC9_D756SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -618,18 +615,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLE10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQK4QIAAAD//+ICAAAA//8DAOcxeKNbAAAA headers: Access-Control-Allow-Origin: - '*' @@ -646,20 +639,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:54 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000296ABF5B1B97.1.1.m_5 + - 1D340441F938F2D50000603E3F2F5AF5.1.1.m_7 NCBI-SID: - - B7F4DF5FB7833774_9CBBSID + - 1E4B5D7AF0146C25_734FSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=B7F4DF5FB7833774_9CBBSID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:57 GMT + - ncbi_sid=1E4B5D7AF0146C25_734FSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -687,18 +680,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMLY10ww9DQRMEjPzdfoTixIDM1r1ghOaMIyC3O + z01VMDTWUXAPcs4wttArACoLKMrMTSyqVHAsLk7NTcqp5ApBAu6O7u4h7kAyxBnIcQaS7iFcAAAA + AP//4gIAAAD//wMAlOTJvHoAAAA= headers: Access-Control-Allow-Origin: - '*' @@ -715,20 +705,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:56 GMT + - Tue, 11 Nov 2025 08:01:55 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B964500003C6AC0E69431.1.1.m_5 + - 1D340441F938F2D50000243E406F9558.1.1.m_7 NCBI-SID: - - 395E8389D77F1DFA_7E9CSID + - 74A920AB436B5E83_FCDBSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=395E8389D77F1DFA_7E9CSID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:57 GMT + - ncbi_sid=74A920AB436B5E83_FCDBSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -736,7 +726,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -756,18 +746,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLY10ow0TBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTA01lFwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkCgnhAgAAAP//4gIAAAD//wMAmBgGAVwA + AAA= headers: Access-Control-Allow-Origin: - '*' @@ -784,20 +771,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:57 GMT + - Tue, 11 Nov 2025 08:01:55 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B964500004F6AC2D1F640.1.1.m_5 + - 1D340441F938F2D50000363E41F79539.1.1.m_7 NCBI-SID: - - 6BD14C65C934689E_1EBASID + - A9C765B1FDF11DC2_4B2DSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=6BD14C65C934689E_1EBASID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:57 GMT + - ncbi_sid=A9C765B1FDF11DC2_4B2DSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -805,7 +792,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index dd62eb86..f668f68f 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -1,46 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Tue, 11 Nov 2025 07:24:03 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK - request: body: null headers: @@ -65,49 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 07:24:03 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Tue, 11 Nov 2025 07:24:03 GMT + - Tue, 11 Nov 2025 08:01:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -125,21 +41,56 @@ interactions: User-Agent: - python-requests/2.32.5 method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: C + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI0tjM3NjI10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRy5gIAAAD//+ICAAAA//8DALFcilZbAAAA headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private Connection: - - close - Content-Length: - - '1' + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests Content-Type: - - text/plain; charset=utf-8 + - text/plain Date: - - Tue, 11 Nov 2025 07:24:03 GMT + - Tue, 11 Nov 2025 08:01:49 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D3363338DB170350000563B539FF6B7.1.1.m_7 + NCBI-SID: + - 69CF81D74CC72628_67D5SID + Referrer-Policy: + - origin-when-cross-origin Server: - - Werkzeug/2.2.3 Python/3.10.12 + - Finatra + Set-Cookie: + - ncbi_sid=69CF81D74CC72628_67D5SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:49 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip status: code: 200 message: OK diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index ceaf0dd9..04c62bdc 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 response: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -189,18 +189,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM1NdMGWm4JGfm69QnFiQmZpXrJCcUQTkFufnpioY + WuoouAc5Zxhb6BUYmigEFGXmJhZVKjgWF6fmJuVUcjk7cgEAAAD//+ICAAAA//8DAN6im+lYAAAA headers: Access-Control-Allow-Origin: - '*' @@ -217,20 +213,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:13 GMT + - Tue, 11 Nov 2025 08:02:09 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 939B8D0F598EF6450000384EC12522B3.1.1.m_5 + - 1D340441F938F2D50000383E6C25A76E.1.1.m_7 NCBI-SID: - - 936A81D97746F649_8FB6SID + - C0817E9D944BEA46_16E6SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=936A81D97746F649_8FB6SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:13 GMT + - ncbi_sid=C0817E9D944BEA46_16E6SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:10 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -258,18 +254,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTMzNdCKXgkZ+br1CcWJCZmleskJxRBOQW5+emKhha + 6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyOXIBAAAA///iAgAAAP//AwDscSJIVwAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -286,20 +278,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:14 GMT + - Tue, 11 Nov 2025 08:02:10 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B964500003B6ADCF52790.1.1.m_5 + - 1D340441F938F2D500004C3E6DD761C7.1.1.m_7 NCBI-SID: - - CD7F83678DD46B63_094ESID + - 011415198D35A012_A427SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=CD7F83678DD46B63_094ESID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:14 GMT + - ncbi_sid=011415198D35A012_A427SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:11 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -327,18 +319,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM1NdEGVhpuCRn5uvUJxYkJmaV6yQnFEE5Bbn56Yq + GFrqKLgHOWcYW+gVGJooBBRl5iYWVSo4Fhen5iblVHI5O7o7OzqHhIS4u7s7urs7O4NJLgAAAAD/ + /+ICAAAA//8DAME0cP1sAAAA headers: Access-Control-Allow-Origin: - '*' @@ -355,20 +344,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:15 GMT + - Tue, 11 Nov 2025 08:02:11 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C500003868A691F8D2.1.1.m_5 + - 1D340441F938F2D500004C3E70466F4E.1.1.m_7 NCBI-SID: - - 920E419855E3E73A_6798SID + - 03C9F38F0253A897_3DE6SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=920E419855E3E73A_6798SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:14 GMT + - ncbi_sid=03C9F38F0253A897_3DE6SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:11 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -396,18 +385,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM2NdMGWm4JGfm69QnFiQmZpXrJCcUQTkFufnpioY + WuoouAc5Zxhb6BUYmigEFGXmJhZVKjgWF6fmJuVUcjmHODtyAQAAAP//4gIAAAD//wMAcnFU/1oA + AAA= headers: Access-Control-Allow-Origin: - '*' @@ -424,20 +410,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:15 GMT + - Tue, 11 Nov 2025 08:02:11 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 939B8D0F598EF64500003A4EC62F8AC8.1.1.m_5 + - 1D340441F938F2D50000343E71971FCE.1.1.m_7 NCBI-SID: - - E4C99ED46FE45CC4_5301SID + - A1756C88DF8BF43D_8DF3SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=E4C99ED46FE45CC4_5301SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:15 GMT + - ncbi_sid=A1756C88DF8BF43D_8DF3SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:12 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index e97595d2..3772969a 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 response: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 response: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 response: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 response: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -189,7 +189,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 response: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -219,7 +219,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 response: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -249,7 +249,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 response: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -279,7 +279,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 response: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:16 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -309,18 +309,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTC0NdIGVqYKjgkZ+br1CcWJCZmleskJxRBOQW5+em + Khha6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyObs7urs7uwOxo7tjiLMjmM8FAAAA///i + AgAAAP//AwCUo69uawAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -337,20 +334,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:15 GMT + - Tue, 11 Nov 2025 08:02:12 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000296ADFB4C6D1.1.1.m_5 + - 1D340441F938F2D500005E3E731F7CBA.1.1.m_7 NCBI-SID: - - 5138244380359839_E088SID + - F47D9F5E4E0F5C43_0B6ESID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=5138244380359839_E088SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:16 GMT + - ncbi_sid=F47D9F5E4E0F5C43_0B6ESID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:12 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -378,18 +375,14 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0tTA0NdCKXgkZ+br1CcWJCZmleskJxRBOQW5+emKhha + 6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyuXMBAAAA///iAgAAAP//AwDTOp6eVwAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -406,20 +399,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:02:13 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C500005C68AA480827.1.1.m_5 + - 1D340441F938F2D50000293E747A3F6D.1.1.m_7 NCBI-SID: - - EF190317EF29B850_843BSID + - FE7E65401D1F4450_9746SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=EF190317EF29B850_843BSID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:16 GMT + - ncbi_sid=FE7E65401D1F4450_9746SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -427,7 +420,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -447,18 +440,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' + string: !!binary | + H4sIAAAAAAAAAByHwQqDQAxE735FPqCKWS3s9lAIOaQnkdJ70bKg0O3K5uTfmzow8+bdB363FgwN + tjfnQ++xNlwdwiOnDDpta/wpfJZiqjlFwHABefLS+WbDHsaypqnsQKoxzd+9YiERFisJvZhON4qc + /l9mO1wdAAAA///iAgAAAP//AwD3jSMmfwAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -475,20 +465,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:02:13 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - D0BDD793D08B96450000276AE25EC479.1.1.m_5 + - 1D340441F938F2D500002F3E76998399.1.1.m_7 NCBI-SID: - - 3E0B8399C5730140_662ESID + - 4952510379E97593_DEACSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=3E0B8399C5730140_662ESID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:17 GMT + - ncbi_sid=4952510379E97593_DEACSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index bf7549b6..0f79ddce 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 response: @@ -28,7 +28,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:59 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -44,18 +44,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' + string: !!binary | + H4sIAAAAAAAAAAzGsQrCMBAG4L1P8Y8KVXLpYHUQ6uRiCX0BOSXYQJuE3EXw7e3wwXcdH09jqOvI + 2PORLv3JHja4pzVBOAcfBbkk9SEiz0nyzMriQSj+UxfWVH6Q+qoxKMjesHPO0bRt30ILR3mXkBVf + LoGjom+xTuPQDM0fAAD//+ICAAAA//8DADLRQFd8AAAA headers: Access-Control-Allow-Origin: - '*' @@ -72,20 +69,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:22:59 GMT + - Tue, 11 Nov 2025 08:01:56 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C50000456888830C71.1.1.m_5 + - 1D340441F938F2D500003C3E46988037.1.1.m_7 NCBI-SID: - - 7AD8F1E2A50E9918_F982SID + - 15937E4C7F59CF0B_83BESID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=7AD8F1E2A50E9918_F982SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:22:59 GMT + - ncbi_sid=15937E4C7F59CF0B_83BESID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:01:57 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -93,7 +90,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -113,7 +110,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK response: @@ -132,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:59 GMT + - Tue, 11 Nov 2025 08:01:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -148,7 +145,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 response: @@ -162,7 +159,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:59 GMT + - Tue, 11 Nov 2025 08:01:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -178,18 +175,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' + string: !!binary | + H4sIAAAAAAAAAAzGsQrCMBQF0L1fcUeFKk062DoIsUNdLKFkl6cEG7BJSF4E/95O51ym+6NpRNuK + RvZHce5O8tD1ErewBmSKzvqMmAJb5xGXkONCTNlCINl3+RCH9EMuz+IdQ8grdlprMW/b1+BEPr+S + i4wvJUee0dVY50lVyoxKDWZQW8zGOCpjqj8AAAD//+ICAAAA//8DAEDhNYqQAAAA headers: Access-Control-Allow-Origin: - '*' @@ -206,20 +200,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:05 GMT + - Tue, 11 Nov 2025 08:02:02 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C50000586893DC8709.1.1.m_5 + - 1D340441F938F2D500005C3E585BE79C.1.1.m_7 NCBI-SID: - - 262F01FCE7B21934_7603SID + - 9D10BBBCB836C7D9_A4DASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=262F01FCE7B21934_7603SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:05 GMT + - ncbi_sid=9D10BBBCB836C7D9_A4DASID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:02 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index f3a27556..35922555 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 response: @@ -28,7 +28,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:06 GMT + - Tue, 11 Nov 2025 08:02:03 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -44,18 +44,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' + string: !!binary | + H4sIAAAAAAAAABTEQQrCMBAF0H1P8ZcKrTAVtLoQxIWCWKgXkGlNayCThGRa8PbiW7xT+3hRQ/tD + s6Ej1btt9Q+3IAGZozU+IwblnO0sWIJTnkw1sZo3hg97bxzy3I8s1n3RQYz0JoGwul/ajtYlNLHP + Q7JRsXCy7BV1CXm25+Ja/AAAAP//4gIAAAD//wMAjtT/qIAAAAA= headers: Access-Control-Allow-Origin: - '*' @@ -72,20 +69,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:06 GMT + - Tue, 11 Nov 2025 08:02:02 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 939B8D0F598EF64500002C4EA9104A61.1.1.m_5 + - 1D340441F938F2D50000573E59DD1A44.1.1.m_7 NCBI-SID: - - 30DD211EE0892843_5A1ESID + - 4D46C1EC40ECB308_1BD4SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=30DD211EE0892843_5A1ESID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:06 GMT + - ncbi_sid=4D46C1EC40ECB308_1BD4SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:03 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -113,7 +110,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg response: @@ -132,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:06 GMT + - Tue, 11 Nov 2025 08:02:03 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -148,7 +145,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 response: @@ -162,7 +159,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:06 GMT + - Tue, 11 Nov 2025 08:02:03 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -178,18 +175,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' + string: !!binary | + H4sIAAAAAAAAABTEsQrCMBQF0N2vuKNCIk0VBQdBHBQKhRZ3eW2fNZi8lCQt+PfiGc65bp/Fvjga + szUnUx52+h/uwQckmixLwhQypWRnjyW4TCPrkTIP6N8kwk6hah7a2Q8jzd2LvHVfBc++4wiDdXWt + G7NRyJEk9dFOGQtFS5JRKkgQ3YfByoi2vqxuqx8AAAD//+ICAAAA//8DACrfWUyTAAAA headers: Access-Control-Allow-Origin: - '*' @@ -206,20 +200,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:12 GMT + - Tue, 11 Nov 2025 08:02:03 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C500004768A15CDFD0.1.1.m_5 + - 1D340441F938F2D50000383E5AE00C98.1.1.m_7 NCBI-SID: - - 1775CB3F32205734_491BSID + - 7733257D8B5B7E1E_DB94SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=1775CB3F32205734_491BSID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:12 GMT + - ncbi_sid=7733257D8B5B7E1E_DB94SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:03 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -227,7 +221,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '2' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -247,18 +241,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' + string: !!binary | + H4sIAAAAAAAAAAzEvQrCMBQG0L1P8Y0KrZAKGh0E6VBBDFSyy21Na6D5Ibkt+PZ6hnNRj5eQ4niS + O3EW9WFf/ZO4BReQKVrjM2JgytkuDmuYmSZTTcTmjeFD3psZeelHcnb+ooMzrjcJApt7ozqxLcGJ + fB6SjYyVkiXPqEu4p7oWrdaNbosfAAAA///iAgAAAP//AwAE2YHOhQAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -275,20 +266,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:11 GMT + - Tue, 11 Nov 2025 08:02:09 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 939B8D0F598EF6450000504EBE95DDC4.1.1.m_5 + - 1D340441F938F2D50000553E6AA9813F.1.1.m_7 NCBI-SID: - - 738BE373688C0FCA_4A11SID + - CE605A3CD98A7B9C_ED0BSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=738BE373688C0FCA_4A11SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:12 GMT + - ncbi_sid=CE605A3CD98A7B9C_ED0BSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:02:09 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -296,7 +287,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '2' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index 0df00547..644e2360 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -176,7 +176,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -217,7 +217,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -247,7 +247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 21:00:29 GMT + - Wed, 12 Nov 2025 06:13:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index bbcfdd57..b4755821 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -9,7 +9,49 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: + Connection: + - close + Content-Length: + - '1002' + Content-Type: + - application/json + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 response: @@ -23,7 +65,49 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: + Connection: + - close + Content-Length: + - '1002' + Content-Type: + - application/json + Date: + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 response: @@ -53,7 +137,307 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +453,127 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 response: @@ -83,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +603,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 response: @@ -113,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +633,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 response: @@ -143,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:17 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +663,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 response: @@ -173,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -189,7 +693,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 response: @@ -203,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -219,7 +723,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 response: @@ -233,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -249,7 +753,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 response: @@ -263,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -279,7 +783,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 response: @@ -293,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -309,7 +813,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 response: @@ -323,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -339,7 +843,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 response: @@ -353,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -369,7 +873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 response: @@ -383,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -399,7 +903,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 response: @@ -413,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -429,7 +933,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 response: @@ -443,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -459,7 +963,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 response: @@ -473,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -489,7 +993,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 response: @@ -503,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -519,7 +1023,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 response: @@ -533,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -549,7 +1053,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 response: @@ -563,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -579,7 +1083,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 response: @@ -593,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -609,7 +1113,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 response: @@ -623,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -639,7 +1143,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 response: @@ -653,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -669,7 +1173,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 response: @@ -683,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -699,7 +1203,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 response: @@ -713,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -729,7 +1233,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 response: @@ -743,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -759,7 +1263,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 response: @@ -773,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -789,7 +1293,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 response: @@ -803,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -819,7 +1323,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 response: @@ -833,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -849,7 +1353,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 response: @@ -863,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -879,7 +1383,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 response: @@ -893,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -909,7 +1413,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 response: @@ -923,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -939,7 +1443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 response: @@ -953,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -969,7 +1473,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 response: @@ -983,7 +1487,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -999,7 +1503,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 response: @@ -1013,7 +1517,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1029,7 +1533,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 response: @@ -1043,7 +1547,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1059,7 +1563,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 response: @@ -1073,7 +1577,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1089,7 +1593,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 response: @@ -1103,7 +1607,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1119,7 +1623,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 response: @@ -1133,7 +1637,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1149,7 +1653,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 response: @@ -1163,7 +1667,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1179,7 +1683,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 response: @@ -1193,7 +1697,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1209,7 +1713,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 response: @@ -1223,7 +1727,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1239,7 +1743,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 response: @@ -1253,7 +1757,37 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 11 Nov 2025 08:03:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1269,18 +1803,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMTY10Iw9JEwSM/N1+hOLEgMzWvWCE5owjILc7P + TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5AoJCXF0Dwlxd3R0DnF0dnQHssHAHQmB + pEOQABcAAAD//+ICAAAA//8DAN0Jx5SOAAAA headers: Access-Control-Allow-Origin: - '*' @@ -1297,20 +1828,85 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:39 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 939B8D0F598EF6450000494ECBD8E340.1.1.m_5 + - 1D3363338DB170350000493BC94910D1.1.1.m_7 NCBI-SID: - - FFA219BB52180168_7CBCSID + - 1C343CDFB0EEC3C7_8965SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=FFA219BB52180168_7CBCSID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:18 GMT + - ncbi_sid=1C343CDFB0EEC3C7_8965SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:03:39 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLE10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQK4QIAAAD//+ICAAAA//8DAOcxeKNbAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Tue, 11 Nov 2025 08:03:39 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D32708C99A7F4C500004028E484A923.1.1.m_7 + NCBI-SID: + - 05E3812A29098E49_F4FFSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=05E3812A29098E49_F4FFSID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:03:40 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -1338,20 +1934,15 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' + string: !!binary | + H4sIAAAAAAAAAEyKsQrDMAxEd3+FPqAJUZWhdCgIDepUStBe0mJIoK6DPeXvq2TK4zjuuLs95NU5 + SC3ilc5E2PXU7AGxh3tOGeq4zPFX4TMVrzWnCEgn0EEmurSL355lTmNZgWuN6f1dg5mxmimzGAur + 5x09aJvtgG43dTfxIu5BLfwBAAD//+ICAAAA//8DAGgcIEKjAAAA headers: Access-Control-Allow-Origin: - '*' @@ -1368,20 +1959,20 @@ interactions: Content-Type: - text/plain Date: - - Mon, 10 Mar 2025 16:23:18 GMT + - Tue, 11 Nov 2025 08:03:40 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 322C1EB26B7FD5C500005668AD955B70.1.1.m_5 + - 1D32708C99A7F4C500002628E6427B74.1.1.m_7 NCBI-SID: - - 3A033AF8EF29D368_9BA8SID + - CB12E2715FEAAC07_3789SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=3A033AF8EF29D368_9BA8SID; domain=.nih.gov; path=/; expires=Tue, 10 - Mar 2026 16:23:18 GMT + - ncbi_sid=CB12E2715FEAAC07_3789SID; domain=.nih.gov; path=/; expires=Wed, 11 + Nov 2026 08:03:40 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -1389,7 +1980,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/test_allele_translator.py b/tests/extras/test_allele_translator.py index 93eae5d9..7b572bc1 100644 --- a/tests/extras/test_allele_translator.py +++ b/tests/extras/test_allele_translator.py @@ -535,12 +535,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000013.11:g.32936732=", { - "digest": "DlGuOFkPMxweVP99ZAjfrAV3iZRB-AB3", - "id": "ga4gh:VA.DlGuOFkPMxweVP99ZAjfrAV3iZRB-AB3", "location": { - "digest": "28YsnRvD40gKu1x3nev0gRzRz-5OTlpS", "end": 32936732, - "id": "ga4gh:SL.28YsnRvD40gKu1x3nev0gRzRz-5OTlpS", "sequenceReference": { "refgetAccession": "SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT", "type": "SequenceReference", @@ -560,12 +556,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000007.14:g.55181320A>T", { - "digest": "Hy2XU_-rp4IMh6I_1NXNecBo8Qx8n0oE", - "id": "ga4gh:VA.Hy2XU_-rp4IMh6I_1NXNecBo8Qx8n0oE", "location": { - "digest": "_G2K0qSioM74l_u3OaKR0mgLYdeTL7Xd", "end": 55181320, - "id": "ga4gh:SL._G2K0qSioM74l_u3OaKR0mgLYdeTL7Xd", "sequenceReference": { "refgetAccession": "SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul", "type": "SequenceReference", @@ -580,12 +572,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000007.14:g.55181220del", { - "digest": "klRMVChjvV73ZxS9Ajq1Rb8WU-p_HbLu", - "id": "ga4gh:VA.klRMVChjvV73ZxS9Ajq1Rb8WU-p_HbLu", "location": { - "digest": "ljan7F0ePe9uiD6f2u80ZG5gDtx9Mr0V", "end": 55181220, - "id": "ga4gh:SL.ljan7F0ePe9uiD6f2u80ZG5gDtx9Mr0V", "sequenceReference": { "refgetAccession": "SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul", "type": "SequenceReference", @@ -605,12 +593,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000007.14:g.55181230_55181231insGGCT", { - "digest": "CLOvnFRJXGNRB9aTuNbvsLqc7syRYb55", - "id": "ga4gh:VA.CLOvnFRJXGNRB9aTuNbvsLqc7syRYb55", "location": { - "digest": "lh4dRt_xWPi3wrubcfomi5DkD7fu6wd2", "end": 55181230, - "id": "ga4gh:SL.lh4dRt_xWPi3wrubcfomi5DkD7fu6wd2", "sequenceReference": { "refgetAccession": "SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul", "type": "SequenceReference", @@ -625,12 +609,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000013.11:g.32331093_32331094dup", { - "digest": "swY2caCgv1kP6YqKyPlcEzJqTvou15vC", - "id": "ga4gh:VA.swY2caCgv1kP6YqKyPlcEzJqTvou15vC", "location": { - "digest": "ikECYncPpE1xh6f_LiComrFGevocjDHQ", "end": 32331094, - "id": "ga4gh:SL.ikECYncPpE1xh6f_LiComrFGevocjDHQ", "sequenceReference": { "refgetAccession": "SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT", "type": "SequenceReference", @@ -650,12 +630,8 @@ def test_to_spdi_with_ref(tlr): ( "NC_000013.11:g.32316467dup", { - "digest": "96ak7XdY3DNbp71aHEXw-NHSfeHGW-KT", - "id": "ga4gh:VA.96ak7XdY3DNbp71aHEXw-NHSfeHGW-KT", "location": { - "digest": "fwfHu8VaD2-6Qvay9MJSINXPS767RYSw", "end": 32316467, - "id": "ga4gh:SL.fwfHu8VaD2-6Qvay9MJSINXPS767RYSw", "sequenceReference": { "refgetAccession": "SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT", "type": "SequenceReference", @@ -675,12 +651,8 @@ def test_to_spdi_with_ref(tlr): ( "NM_001331029.1:c.722A>G", { - "digest": "DPe4AO-S0Yu4wzSCmys7eGn4p4sO0zaC", - "id": "ga4gh:VA.DPe4AO-S0Yu4wzSCmys7eGn4p4sO0zaC", "location": { - "digest": "7hcVmPnIspQNDfZKBzRJFc8K9GaJuAlY", "end": 872, - "id": "ga4gh:SL.7hcVmPnIspQNDfZKBzRJFc8K9GaJuAlY", "sequenceReference": { "refgetAccession": "SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK", "type": "SequenceReference", @@ -695,12 +667,8 @@ def test_to_spdi_with_ref(tlr): ( "NM_181798.1:c.1007G>T", { - "digest": "vSL4aV7mPQKQLX7Jk-PmXN0APs0cBIr9", - "id": "ga4gh:VA.vSL4aV7mPQKQLX7Jk-PmXN0APs0cBIr9", "location": { - "digest": "EtvHvoj1Lsq-RruzIzWbKOIAW-bt193w", "end": 1263, - "id": "ga4gh:SL.EtvHvoj1Lsq-RruzIzWbKOIAW-bt193w", "sequenceReference": { "refgetAccession": "SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg", "type": "SequenceReference", @@ -715,13 +683,9 @@ def test_to_spdi_with_ref(tlr): ( "NC_000019.10:g.289464_289465insCACA", { - "digest": "YFUR4oR_84b-rRFf0UzOjfI4eE5FTKAP", - "id": "ga4gh:VA.YFUR4oR_84b-rRFf0UzOjfI4eE5FTKAP", "type": "Allele", "location": { - "digest": "L145KFLJeJ334YnOVm59pPlbdqfHhgXZ", "end": 289466, - "id": "ga4gh:SL.L145KFLJeJ334YnOVm59pPlbdqfHhgXZ", "sequenceReference": { "refgetAccession": "SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl", "type": "SequenceReference", @@ -740,13 +704,9 @@ def test_to_spdi_with_ref(tlr): ( "NC_000019.10:g.289485_289500del", { - "digest": "Djc_SwVDFunsArqwUM00PciVaF70VTcU", - "id": "ga4gh:VA.Djc_SwVDFunsArqwUM00PciVaF70VTcU", "type": "Allele", "location": { - "digest": "WTE7jyihK4qvRRzEqM7u5nSD4iS2k3xp", "end": 289501, - "id": "ga4gh:SL.WTE7jyihK4qvRRzEqM7u5nSD4iS2k3xp", "sequenceReference": { "refgetAccession": "SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl", "type": "SequenceReference", @@ -774,7 +734,6 @@ def test_to_spdi_with_ref(tlr): @pytest.mark.vcr def test_hgvs(tlr, hgvsexpr, expected): # do_normalize defaults to true - tlr.identify = True allele = tlr.translate_from(hgvsexpr, "hgvs") assert allele.model_dump(exclude_none=True) == expected @@ -791,15 +750,9 @@ def test_rle_seq_limit(tlr): rle_seq_limit is set to None. """ # do_normalize defaults to true - tlr.identify = True - a_dict = { - "digest": "j7qUzb1uvmdxLAbtdCPiay4kIRQmyZNv", - "id": "ga4gh:VA.j7qUzb1uvmdxLAbtdCPiay4kIRQmyZNv", "location": { - "digest": "88oOqkUgALP7fnN8P8lbvCosFhG8YpY0", "end": 32331094, - "id": "ga4gh:SL.88oOqkUgALP7fnN8P8lbvCosFhG8YpY0", "sequenceReference": { "refgetAccession": "SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT", "type": "SequenceReference", From 3e121be443c8c16768062a03c87a9892a21095c5 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 01:42:18 -0500 Subject: [PATCH 10/41] Fix test_annotate_vcf_grch38_noattrs with ref alleles --- .../test_annotate_vcf_grch38_noattrs.yaml | 192 +++++++++--------- ...st_vcf_expected_output_no_vrs_attrs.vcf.gz | Bin 4403 -> 4448 bytes 2 files changed, 96 insertions(+), 96 deletions(-) diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index 250b2edd..083ed145 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 response: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -81,7 +81,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl response: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 response: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -153,7 +153,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 response: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,7 +183,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 response: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,7 +213,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 response: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 response: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -273,7 +273,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 response: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -303,7 +303,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 response: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -333,7 +333,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 response: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -363,7 +363,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 response: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -393,7 +393,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 response: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -423,7 +423,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 response: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -453,7 +453,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 response: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -483,7 +483,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 response: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -513,7 +513,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 response: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -543,7 +543,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 response: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -573,7 +573,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 response: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -603,7 +603,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 response: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -633,7 +633,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 response: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -663,7 +663,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 response: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -693,7 +693,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 response: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 response: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -753,7 +753,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 response: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -783,7 +783,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 response: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -813,7 +813,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 response: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -843,7 +843,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 response: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -873,7 +873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -903,7 +903,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -933,7 +933,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -963,7 +963,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -993,7 +993,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1023,7 +1023,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 response: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1053,7 +1053,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 response: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1083,7 +1083,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 response: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1113,7 +1113,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 response: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1143,7 +1143,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 response: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1173,7 +1173,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 response: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1203,7 +1203,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 response: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1233,7 +1233,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 response: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1263,7 +1263,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 response: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1293,7 +1293,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 response: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1323,7 +1323,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 response: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1353,7 +1353,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 response: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1383,7 +1383,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 response: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1413,7 +1413,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 response: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1443,7 +1443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 response: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 06:34:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf.gz b/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf.gz index 6eae43cab8552610df22c0ab760a47afdcebbe2c..03fae3361edcb48d6f6670507b15ffab9abe5f30 100644 GIT binary patch literal 4448 zcmV-m5uffKiwFq5D->x0|8!+@bYFI3W?yA^aAjk3Wn^D(b#!obbYE_7Uv_eHUtx4~ za&shxmI6XYLYP8$+Loe>n{AuDx;lZ0m5LoK2#GA#|)Qw|r@a8vlj|Mt)6Yqc^ zY$HjS`mA|=u;>r7i>)2s+Oc*b{kNS@?!wI=tvADY*w@I`%|JNIZ)sMo&AEiF^$1_|Hyl|9^4+xVEw;3UI?aHJVEDy%>i5qrXH_b7X z-7xC9LDF?YH(17g+>O0tcj(56``Z>KDKH6kC@0SAG3go;JCZn@a{x?MU?PH<0)0Iu z&oL$DR1ye3?Hp4eiMS&GFh!2Z9m*6YeLbekF&W2H+SGnMrjuh*NgXDzcs(XY1t=Ac z03kib1t>?-wn0FN;VBWEB7m*OMJ{1RZAOU%04Es}) zNW}oM9_Q&KDdB=K41k%ZlSEXgO@i<g^JpUAyq+NkNF{YQxGB;27tWC-L$z4kwV>fr$necw->lObHhP2 zDM}Pa5Op*+A+}6Vf+zvBAh#Dmge@UWI9n!cTiOWD0!CXF7*YuiXaR3qAOu6MfmEW7Qb}nyAQYt~w=%KEB&JM+hnARG8q@0SFY! zOdyrmWWxkOj(}*P_-Yju+TjozqDyhsTOleKi);dDVS5c!O&JW(f>V{)5+d!^Cdjt_ zQ3r7dby{b36=M;i5G@qWDeF{F7K2cBZG(_){U8`)hyhU9SjDPB${hx?AFFjJyb2qb z*$(77Xhm*dh?cA{!77*wauiXRsHhl%NQ@wDY?ll*1X762;A;~VQphA>5QC<@wo%ax zN@W@17zc}W)!iMST)3u(6$+D2FX6mOT-2Zh_R23BO#Ho8EOhK@)y{mz^1}> z09AyU5mCd80|{+}gxJi6gf<0=Nl>pHBOr)?Ld%kh0Lm&eMTAg-A)!mffPs?FAT|Lx zuq?bLC4B;owNb(x2^wm%f=S6Bp-oy-8`5iLgqo^;6BOLGOS%e45!;NmfNY?cEy^JQ zgrS71xC7!WlBLB_-YXCTkI*3jJSa|p2;|bNE^~?b0Zy& zA-y&ek|G2NU7BcY$g<8$Wt~b)Aj54I8*W1?2{)T4<+Xr>Hk8B$EeRYM`o}4!kY1b8 zNr4l3H5qSCMqsZi80$0bmwjd(a1H#64jct?^^6-KR`O{KHl;sIB)@Dh^1oW|iQ#!Ym0@7Iez^ZuyjkWpU zQ9zb2b4nMnEkS{bUH2^4AkSSemGs4 zNmYwYAi-J5a~txMQZQ3nxnLC3b5p1|LXaWHX3i@fQU@|B=17eZXrUCP!&_T|{)|g7 zBZnB44u-@ww$rv5kYK6gNgV&ta41gO7S z$$05pR0s^Jv}VgGZ2?pxR-W4nV*G#BY}o21OAQ5P0B0LVZ|@3!Re$wE^fO*t)4C44 zI8MfHC{X$JHSPJtiiTF}+8RbPYv3lX!icRWKN(xe*pID|7e>i)>RB4W(h!zFZ#MAV zAjn>8;|<(!Fz{n{H1oXe7v=QTg(?2nU3eM3{>WP2Y$+e2c@p~r{jHaN>GlH8nt3Ay z5?cygf3eH}lp+0&95+mIH)9R4aA&^$Fg5oLUwiZ9XE~~%4M+7Qu{-f{H#eOsRx%IQ zHp*T#*B+%?Q(Tp~`igiIH;uidZ1cEm<7uq^#d6cv9QolWi-?Mhx-Z=r*BbkyvF4Iq zeaXS}vS^|`saxvizNc81cwrhDeZTttX%>Z}P47O>y;wV=gX@O_FL;56aWwHZcF--{ zNl~o8osGO%#%GLr(`*4MW(r}Q2I^MLILn_*17F>#77%@1j-q+2wt1+)^fI)aO{e># zC=8Y_@Kj%BH6w-ZC7#t%dp7a=+U0@4IqjLBSWn8C{_0Y7*Tl~@VK`G^b;G5VxxQL< z1?fE%z)8;yT;=r(T+WxkBv{pB!Dq)Z>7Yya>KhQ4GZ2JxE%1!&x!kY!|bgDeo zMxL=B`-zuoj54cS&`kG3i|g%C8nxb?68$vO!YI^q$`dhlC`F0q(`htIGtnZe}e-T+(2!<+Mj_pRe2cCCllqk z+n+^B9koO2h}13bOFx(ow5J!>D7`5zo1F%3qF*)^zr=KQiC*TwAEx9>tQ;WSmZ!1b zA6shGfu~A&x0EKSM5G&J={oHCq24t&*G)IcybGeftC8w!c~1pzN8K}2g?vDQ2oaKjLAo zOKa(Mv+Y(kvl^o+MW{;Y%*wX5%(6JKC&z$I&_uGw3uPsxt~bZ&0}h3QEUIyEqU1&zf$l2I2)_ST)_5NqzfV zw_ceiI*s+~Ky?7}AxUjhtD~75TIBEf*ZGpx{fKMi=K9{}eNWpSSm)hs*9(u*mhvUb z&><)lB(Of z6&&Uxbe^eqH|=gCjZXLUFy4q~rP8J3m`vxIPr3m}{GqSkAFO*I&74+)wN5OBYh}1v zY*kwkPops9eG+Atb<$z>OGZQe$<5Jm+F~@$JF5+gt^d+Es!qh(HdcT3)dxFQOQkDe z{<)+6{P*^8q`%-=ELYX);}6)+lKoPV<%4Q)jcwRf7<#5~gi8 zPi`(RYFC%-+Ua3UEv2TGQMs2jp@ejy;X@)t#=%Ie)_TT!^{+dAQ8nc1bmo&#JGyVDG{HES)wlRO~bqRXx?XR<4 z-C{OF`j+#XR-^N-bot@kentCvaN@VU&sRqjp)aM&>&;fE-##7GPowbYOEmH7?I`dE z?IXc^)BSZ%anNjc%T~I1yP>|yT`7HP-k`r^`M3Kzfh#ce$NNPMKhPC=f1{T;7>}sj zjlI!eK8?Gvl0R?Iop`g6s`;u#nW&lH?fF_+m9hPDsvL}5HX85UHFmvtvXEip=H_P5 zUdD&V^V6f**_WHf;I@4i-@iYq=U4We#_6p$igEk$!=(t{eUJgd%OH4M-iGncoYh*L zy{q=#;niL$oa*m;t?L^4PrSFghdJ9rb(H>v30jedNJbTD6nh$qK-=_T8}vC1g89S` z-Fm?zwQU8JSeZ)ZRzFXxeB%p#@iM;*oRnqNd`maBV3BdtaOQbEcj?8Ige>{;yWHFG zbx6o>bXgA`JEoFgbrj8Pji9zL!3% zTE}bC;5kx;pFekQmpd*Q>1RNfld~Rco-KAx-p`L4lh*9AAmy^XIGiRA!;`mN=l*Co z7ji+#;n%khXTzt~=u&)(lpM=Fht(aasA<)WS?`w#wyPqUEUb>GRw+poA@5b0E$Q6Imh_S;7D==St|zw>l77W0b*J>9u_=-}tn zjOgZ&YcW&*EB@&?CX3XhuJx>P)cun~|2`Z_&rS|*@*fJQXr+&y^;4m2T-i%^)tW}J zpPpl{wpZ?~_u2ZZA5Q0qHPVller^1kK6YF`VVZeE{lw_k&aZ#_=CJWQe8M)*#*Ie( z>Q6@fzf+}0&*iP1Gn{xMN00030{{sLNTl2;+Z2$lu9kAs9 literal 4403 zcmV-35zOu%iwFb&00000{{{d;LjnNx3$&U|YaB-qhVS|nLVHQT67|_#O|k}K$Bu~u z#!f;EhGiqKEQQs|Xx9Q0^526j?MzK(ZhC#uNjz_Lb$xZs&Sqy9>($xS_2qIm|KsWN z8#|GM+3fktSHJ!AX8z;LXYUw+lX}R65 zJ{&zhn0*C3TkckKAubeR2eaAJSM!_Gv%7yjJia(QK0Lm<{d4^H@@9F5JUlx4yg9uk zA6~CcudY9Q_x<5NKffU2lh<$O?~hL2AN}y}(ZOtXdbQbIeEe$D>G?H3TCX-Acjt4l zXkJX@(XA<$f33gF&p%%-H;WfY-X&g#=k_MrovVkC^3=OuC*cN_{ED?L?pr!60Qy4D7%v&iW~W#gix!95z6mR zF;P336vUL$_E%9SB9@8(6~<@KAUB{wn@a3Jq}^UZXncr9j;Kz&mzaoHB1Mc)+=XnL z2w8@N>|R4;Tt9@F5f4DNy{{%pc{9v?+@FJ+O=z%{hCGK(Q>27Wq+qL6kQx&Ou{fmY_8LC%3J8YY_{8uT z+yr`zI?>BDG>{q-vtiTfNQrThS8a$z(Yt#Eo0zMr7~n2`-`q(k$xZ(eLaHIrme5=r ziPj#?%>;?|gtm%AOZGJzVn5Kcsb}A=0fA^vXcl55x@2dYA<;evY^X!hJ+>A|GG|vS z;>q8$YtPnN8nB93_6T!rNOW?E6e~z{E>IRwt6Opi2^1ZJD&jzNE+V4BNVE;Ch6Z0v zXvo5{w^|1E3F_L!pcd_6mIGY}_a+LQ!0$hWRN+Vh+vkS~87np!Tb97wAN?H~%$>U@#S8EJJ+NF_p| z2QQj}Z0kN~>l!Rbcjso~1zAZv4^hEVk?2%O3bZ9SrTXXUinKbHR)L}iJu;9Zyi3k? zXwi11!DBs;=;V;rphhQuG=}^-bUSe%d!iAZR6WbJDyAC-)e=oHyr z8*;&wn*kSx?m!2N5$GygZSXh^BsyKA6zEzmzr>gfYIW{2CP=i=H$!X54iRWv*TKsa zxydfM@dhapomXdpeDZ3^OBYu{qSG~o3KCu8o25)0mM5gIBclcS*&ugx(WpqPbIQ0P z(Jfa#HbtUy4T(SoUmg}%pdZ>=O7vEtMrVKg*UQ!RwrvC9&)%;%?CZS1@{43+>wv6D z+yF_F*lxZILqSVti-1JBB$d?r^}~^}OgZl6rffeMu*kdTUijRR5}1sG=AQq`Y8djg zdC=O-B%_cHnfRgyy^s#^d*CP@1@(2`Pmm}iXg`XRpoL)UA2m;cO7`3_?1wzC9VGsO zi3V{<(SA9PM?ppRTd5bc=C%$NMo~!7{+s$i611HAFOSDTUqtwaILTxZ@_eZ8pIO9# zzHX^M+ikrY?2iL&8{LJO(|d(vp!>xUFRY$1C@5pIb-Ca1a!E z><%xc{OvNroZA zIr3I#+@FN}GA|kVhs3=o==vFXYjY4M{Xt0Cv0w2=lc0%`c(S8@p#G|+@z%L$l0-q7 z)^9n-aT2IT)X3wf{=O{7aoFlMZZ#CqFu>Wy<)4pxywUh|>E~TrGkqvfYm+mP^xD_g z%&QXQ3Z@URk_s|rm`0=FnVTF;&NZx2NVDA_kOUwRko0~&kk5+3U2B6G6IsSJTPwtu z7v-d^D6IUPJ)x6Nf5C1tNCmPonrHMB?L)RK5EQPt6dIVw=)u+r$hf9Ea+oj;Oid!5 znBw%ORreoQmzDWmK$n&AfYK1nN^D>rg4$bBiJgu%s<%5tHZ=QD4(d1fV?QZJ)7E*_ z*72O9LSXiqBQDm?BV0p{#s-E#&eu8R5?S8@Xoty?kaR(Fks`>IL18^Z^SOp+CB^y> z-KPpQfg$H|kzsKHLM=-?h#=d;u~ML5YK_X}bJSaIoB=|b9GhhTIirjNUTzAG85tn| z*{)@!LE#D&k{P7u5OlhhqS&5*l!n1uS#An62vZcYRddzrVV(=q~Q(RoQ)Cl}l7_qV8h5!8g~!;2KpM=|UP-fI^l*h8vTEuF4WK zV5yQ?ldl?&bOAr7MU@fK+lQW=q}ysY1v7Nnm_9|d8$xDgd}Wi*KqJ70dnGoTCYB;> zfPm^SO{G}ztYL$i>t0Yrm#Bx61hIB{$v~vx3^vlB zFq{=Yww$%iY;x+AdD5)X?-z+$#aCy^kAtRb##c%LsE$FMm91Oq{Q>5*{5yy1X15$m|p`_yk{5PD^ z@DP5xJn!J1z4R0{ErGOf0jzE=T?bgmXGp26vb8nSwqCanj>Zo8gRfRRtqS7=dukFJ-3DbsbU2; z+v6%zR-{!yiCjD90VppIxUF`JTMz;rHvB6^AU%ciIk3Ilnl+ zx!GAW`yXrSX5IQwA2a2p^luh@Y&T#Ts%H82me-5X;sjE7yZ7NPP)DpfN#Fhal$^NF znMR<GC^r@56Ey&auQ=TwOg#`~ z&h&gZeFu-TIXJmQwo0MiNMZBdNH=U@H?yBz8qz%&H!mN$TY2#-A!5(U86)8t{Y3c7OWdy zqSkC}qxJUP?C!R6e>d-3Uvy@dSDo{lMd#te`Ax^|Bs+wy<3if8mm>f4FVX~@EwWhv z03VA81ONa4009360763o03ZeJ*H3ezNE86@v->H$Wp|6X-OYbe9uQqLMq@;c@j?MM z&|@P68jbn%TNp=ThGdeN-P$?iV2SYhkG`J|o)@N2ttm*7gj%C!)Fw3%)JD2x)e`D3 zKTe~pi7vh#ubl{IO$g@P$njbvzF0cU$uKKo4u{7OBTVCny%=O?Or=;296Mf+Dvae%&nA72ZA~3Pd$?MbK9Fmu^5C7nP+CCa>qzl)q7JMWYD_4 zyO!7eJB0$cqja^KuCw!8sF@ROWNGb@rnmL0D@|`}=1mR!1+|6-ML`1`*uNkGzj=E+ zND+7u6ngZUQNc%e!KX)Q9+9=fm5w;WEGY@6l%A*hbymm3m%hYPU(e>*E35XlPi(2^ z*&si~*mZU|s|0znm+#tpv6pv2swTK6_L7u2HbP!0pmgIXPGY)?aGKcxlib86QG!z+ zdn{lOxQU(7I1#zS5Q{_!#bcachn11x(=5e+r|?%D8k7t>$)FeJeSWxAF;ee+vddRD ztK>`2?V-}41B5SsXTt!v78nnDw_p0Vmb<;Q1bdUnmh|wJLjfTTLYadAY6|3JQR7AF zs8JR6wQN$G7`kB^#>AZH`o#DU%_GZ#$-8J)SD_QIB~9sVnjZxDqF|P?E2aK0&L63a z`>Th&pPa1v9zXjxcnu|6jfM~B!*Cknc@iSzESz)yaxrnnIDK$?X^C=YZQ2Q&``wnU z-gf+4RyI6pKepzV{?-hx<+o6ZP|;L@Qxy$DiG#eX$%=S_5`aC+Dv08{AU>t6W`k?_eMauSA-dVt=!3vEm;z} zi^a^=hf|}Jo6p2+VW2)HWV@0wpItA{JM9hI+R4h&H%q@-F5Jsi>gHN4&=>S@*D z`;j8L;W|;nC3J*xXA8h#E`Di|Yuaz@YJROQfH3J+f-&OTFBUM$4 zf>zn|4y!-)E80G*^(4*+Bk{U^NUw7KHP7|m z$vVkdJ#aR-ex{$*-JI3EI8Cv~>M8c?B&(lI&i;6_+xU(rD2Y$~hR%&XMg7vEs>;$N zok3q3%kAmd>9cs3xw4V0V$!)W`(~KwWl>r@QV$6si&`_-T`V4N?}AYq*``0}tyk$H t=Ncbp^bgz Date: Wed, 12 Nov 2025 02:03:42 -0500 Subject: [PATCH 11/41] Update incorrect ref allele test case. Refresh expected VCFs --- .../test_vcf_expected_altsonly_output.vcf.gz | Bin 4379 -> 4662 bytes .../data/test_vcf_expected_output.vcf.gz | Bin 4630 -> 4913 bytes tests/extras/test_annotate_vcf.py | 13 ++++++++----- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/tests/extras/data/test_vcf_expected_altsonly_output.vcf.gz b/tests/extras/data/test_vcf_expected_altsonly_output.vcf.gz index 173adfa1397a321f12164b7b976fdef0b1e2f1cb..7de209654999e8df9bdbcb0bd4810313573b931c 100644 GIT binary patch literal 4662 zcmV-663Oi!iwFb&00000{{{d;LjnLR4b5C_Z{x-h{_Ok;!uO>`e8Rr(5{U!2zB`{$ zU(Rm{8Z?DLOO(ZeA{CPI#Vz{ZJG*>aicG3IkAvnzf=J{u&&eVty<7Hl~ zqw4s_(|3>fQOp?c3|)Z_nQxU!L6D9KDIld68_YB+rfyPtr7iyQ;V-gH2SH z@#641xW@v$iK_UR5vqt`0zNyvIDVWj>x+ZeN$@&&o!fuC{%7Yl~wfJ2$S`gjD}pY@cEd$#iXHO zp_CEGNRseV2tB|RwDp+-r1N_$XAj8Z6|%wx*5Pp>Sb z5Gs^)#Uzv_VQ3K4iFLIEXF_RQMSm}eT$L=qmOnb^vDEfgkxxHYr%}2U|JbW6XD2&QbrLx3zUp32m%F; zXn~F`Fh((bU=!H{Wra}toe4e>CXLboS_@)qfuc+;thFG=VNw((BSaGubuD31!kFXl z&MpWckU0}3Bo7e+C2A7{3Y+biU?kKSBb02sn9z=pDU2y4Y?orJe}WK&AWofyu@4+} z83NJ5SpJ}}4My3uCfHd2ct|9MI<=KOm9d0yj1h`hkRH!*gDhbTu8y@`pAp_xJH-JOkb%YaQF z$5;&6nwXG6VVJUGR83u)os_1qbjFH$`E7Is9Q(In#&9^C=1fs;A7FH zlu3y(iL|2#pPCbh#%NEyjj>w6whLqK>`jb?gz8XhjMLW6#)Kd$i6Xkajj@ynP!iM? zpBO$34H>E%V=1A88;&3)y^V?4FytCR*n1P>B8Sf~4vKziEQpD@3R)JzTKtgJCOCoW z>m-V4gu?Ejg$E6_fCbQrN9<;!ahz^?hu?B2}*|ocwn%oI_6v^C}cC6pe91QD8htV4$Kgs;ao zeluXO2f~br2QE;ab+ypapK}<>lfMp{gubw1Je==Y588o2?2nT83mIY@EcC4Xg5(4- zwIv!_kFxi5Yckmo&!kX>#9V}5aS<= z2vl7){+JzNJm~46{SyX>T8+k2K07`jLTfLtIVG4=r8FM45CXLsg#J;H!Z@$&X?sOu z-$KQN_PV2z1T!GUt4Bp8ruKziJ#vEaVqy>NWj5p@<^h-A45*T*XP|?F5!9n>?khIO zY+;;x%g7Y!v7EmXgMgs2_WO*$c+a?l7UadCxxY0am=iYVUJHYrDdtJG@*A%qh|0&6 ze{^Orx4c~Whb}M!VnTb%XgKEK1=r@qN=6Um2{YDyOQ#I=u|YUEw>5~{JMK??_ANwA z*1qyl%yU~F`Wj*kX7c&N0!Rp^JcVANhZ>c%9}jI%bI*TdB`{B$`Cv1nG2W!;S^LnO zU7>e4X}?W5vvsVPBilzMP@s|@OETv~WFB&fl7ak$6!mQyK#`8ZDtf0Pf6=7@5reK`y{ z>boOa__`tu%In}AxE!2h7=zh0wH%Z_c!HUS(tpsYQT~pu$M&jIu@LjkJT3i0VrWU2 zsUp4FW(*%HN#y%++K66AW4@ z-0o%u0|gZbXB%(-@?*~z=BqDCKksL2&aTq9EUQ(NX)^rznw#x9$d|#{Rj|y9U=dXj zV3fh9q*?{lDk+19ILoW2O&nN+z(NF?9PZ#pXs)`%%!|8~}%WTb0SeejB?lqx&=tiueIQ$^g*q7f&?+7_z^S6J=FLv$PP8QIXgW zow?uPdcUn+iYP#PMC~PIw2nKPyQF$gwpnXq$m+CZovWGe%5E;17Eld=wl82SeCF}iwpt~$zTP8;V+&qsV>#8_&k+Ju~_n(S9 zd)Q_7%Qh}885`UrTg2%e49k2S@2p_d({U(48Wj(5QRg!y_nX=Qh#4TXWdOI@j0=+W zCQaZ@a3KHJ(?h;3VVRczX5FxMc1h14@+^JYgQ>kNIL!e+uHxVf)@+^3E#-xmbCy|B z1)qS-ytx$aS|{})EDH#0lsyGC^~UXqq>mwh>-#8;fb|~K?80PrVcnfUbE8uUFZnvb z0J7hb8ME2;9hsS3`}t#Bq|s&rjIEL1uwN!s>@)_<0tK7tNft=EJfKnS>I~A)W?GhK zHl4acbc7sAx!r8?!c}6x8u!*wHD5V?=ik5k=-9ov1Q|T~e!ISpi(`6p3w3jRo>ehq z$dKu6UPUP^KCI6o-as9e+w~fVNAn^Fb+m-qh#Up+uk&=fuuMN(5qDELG`mTo%Kq3` zxsU1k66@w7S-Rw_f)2nf%coT`Uj^WG8bb>RY*3nLxc|nBp`ahxg?0h;MGd~2CYgbJ zbwp=1(VMCO_jY*N>nzPblH7d~eIYlOCQc&U0tL1YM@eQ^E$VbLs%my=K94NYQ7i9G z@Lt0`OK1eG8Z=rrl8PfMJ&8pCaA&u2l?IoCrsklARRY;%eVGm2>~iW0^Q5cNms^R( z#Aj#8A4jch6w~R?moV&fsg>TSUT&~i_Za9D8MM+Oo>z@>kMgFOUw$)hx||!j(5l*( zCcsb?pApLj=(Cp@jR1tlTH6W4lx_QkH9Z+nYhw@o7l}>7UHZfJ+|r$mBV~scBrDJd zqh`3QC%`oS1Y!kkHF|Jvy3y;yRV`z?`T>cM%(rP(1AGRh?#|ZsJ*>lfN{lnWJS^9(9!k=jC?p@|>9oEn;9xxeYalDvZ1AwyevJ|&j@{3Kk zW`Niu49(D8o3yuY?dVlAv1M$34%7yq+a$pC{3!TX_MeN z6oF0TCOB7t&C4BaYr;}jL~IMBjI$C(fV119VC!0j8~FXc=HTK8+FoOA*OikuCl?p3 zH`o8en`T&dF)XKC8KXZNdTKY|6sl4A;g;81quV`1;k1uoyHFEe?Pc%sW}lq6ggqbZ zAnlGcYvvKBZtWxw78qjWAg)|;)(Cp!RC$uhCOA8cnJ zn>lAE;_Q6@xIv9;#TLeja+7B+@2kAN?AC2&f34HdesXeg+bmQW{N3IU{h_or*^JES zH}J{p%O?<&%=?1QPju&?OYa=4i`246M@SXFF-v8)E6cWQLo~C6B|SnW|9<22>Oj3ZOf`B|FS$U+==O4 zF?LMdea&w)fDjtIzbNaQ8wFayS29 zICuK~`s0U#%a1n)=WhniIJr2ePlgVx^9Qv=AGjYm|LVUIv(e##T>tFARFY$(XQk9WY0CT?yi;C9!V^MXFX$b zJLt|l$ML31pCs7zqOdo2S*ep^ceadEGmR2D(F}0n;u-LxbzsG@WqZCyHgvP@-9$H4 z-^V^SNBy+tTAVvq?$nMgtD{@&rbxf}d?SXJpCuonjqfiuw_$p^K0AfW&l=y~d2y@f>6!ULVyp4Bdng1@!uk_^C6yNTeI(;wm zD!rGRXRUMXsPi}5{(&crpMw4Jj=$lq<>%O2FND+~H?z}0e?``2ywKIv%z4G0mE|4y zR9%DqcUniebxF*Q91P9c2=RawC54AfVV#p9hqCOgYDP=_W&MA!{-3F?9-^ac{b(Ut ztRE3`y1L!01xAQSeBp7Mrv-d~;;PPe%cVk_w-25-;9;=LvE(cr~+F|QYuum=8QM+4~p{CFMg&1mrdljemRbV^k?hn;tZ!fRFtN0&u zv-kLWK7ud-YR zD9dt|HuwH#;1|E2hufyMYCDcnkI>EAMR=vt zmpHe7_riEd+OD<2?GyE+ZPUgyN)lSvwG-^Ly|jH|ocwXLg!+ajB=FlJN(JLzqJC;o z`~HYNKKoOKo0H(|4xK+fKHqMPHH7RPX~5 s+A)Ct0xhp9H0Trn03VA81ONa4009360763o02=@U000000000006B&IGXMYp literal 4379 zcmV+$5#;V4iwFb&00000{{{d;LjnLc478d}YaB-qhVS|nLVHQT67|_#O|k}K$Bu~u z#!f;EhGiqKEQQs|Xx9Q0^526j?MzK(ZhC#uNjz_Lb$xZs&Sqy9>($xS_2qIm|KsWN z8#|GM+3fktSHJ!AX8z;LXYUw+lX}R65 zJ{&zhn0*C3TkckKAubeR2eaAJSM!_Gv%7yjJia(QK0Lm<{d4^H@@9F5JUlx4yg9uk zA6~CcudY9Q_x<5NKffU2lh<$O?~hL2AN}y}(ZOtXdbQbIeEe$D>G?H3TCX-Acjt4l zXkJX@(XA<$f33gF&p%%-H;WfY-X&g#=k_MrovVkC^3=OuC*cN_{ED?L?pr!60Qy4D7%v&iW~W#gix!95z6mR zF;P336vUL$_E%9SB9@8(6~<@KAUB{wn@a3Jq}^UZXncr9j;Kz&mzaoHB1Mc)+=XnL z2w8@N>|R4;Tt9@F5f4DNy{{%pc{9v?+@FJ+O=z%{hCGK(Q>27Wq+qL6kQx&Ou{fmY_8LC%3J8YY_{8uT z+yr`zI?>BDG>{q-vtiTfNQrThS8a$z(Yt#Eo0zMr7~n2`-`q(k$xZ(eLaHIrme5=r ziPj#?%>;?|gtm%AOZGJzVn5Kcsb}A=0fA^vXcl55x@2dYA<;evY^X!hJ+>A|GG|vS z;>q8$YtPnN8nB93_6T!rNOW?E6e~z{E>IRwt6Opi2^1ZJD&jzNE+V4BNVE;Ch6Z0v zXvo5{w^|1E3F_L!pcd_6mIGY}_a+LQ!0$hWRN+Vh+vkS~87np!Tb97wAN?H~%$>U@#S8EJJ+NF_p| z2QQj}Z0kN~>l!Rbcjso~1zAZv4^hEVk?2%O3bZ9SrTXXUinKbHR)L}iJu;9Zyi3k? zXwi11!DBs;=;V;rphhQuG=}^-bUSe%d!iAZR6WbJDyAC-)e=oHyr z8*;&wn*kSx?m!2N5$GygZSXh^BsyKA6zEzmzr>gfYIW{2CP=i=H$!X54iRWv*TKsa zxydfM@dhapomXdpeDZ3^OBYu{qSG~o3KCu8o25)0mM5gIBclcS*&ugx(WpqPbIQ0P z(Jfa#HbtUy4T(SoUmg}%pdZ>=O7vEtMrVKg*UQ!RwrvC9&)%;%?CadX@{43+>j1AW zX@Im%VmDugp`fL+ML;4Ql1l3R`r$}PrX06(Q>LE`SmfPvFMRGu2~4IzbI*TeH4b^& zJnC#_l1WI1%zV+KK}d)AJ#Z9Hg8F*sCrA_$v>(M;&_XcvkD6yeC424|4?`Z(jqc0J&gpnEivsmH^@r1)J!v!@3_}VZcaX;+PbrhJ&#jYWJPL|D z_Jt1yAzdE%Yd#(iN3)P#@we2`AZVdXI)}IMH0Wns$=F*%<7hgILdy2S8OP(0uk(_z z-^$OX$!HQ%xPKHs3i|CxGWL08G7a)Mcq@F;Imwt#LsrdX(pmb0WIPNh+<(!TB;%0b zoOr7<9?n93nU_rbL*hXcbp1@cwK$jZKI0;lEYUJ_#a9@_=IBa#Bb{dLk9N=u@&0n{BywUV&>E~TrbADZ*)+T2n8Fa6& zSyUy+HJo3=S}MqxVH%Bw2X1mOIoGg3AQ#fthGsv?LHz-L>?h@Dx;o!> zbv)##5SYE@h>MN$2-lFKv4LTb^G!~XOwZk%Wc6iBLn2W zyN#?gC|sjLGK2ISf=)M56uT3U(lB@>%WZ)M;T(l5c}kEoFXspuH}JqTr1j8Z2PJnw zSSwiq6FYFwYqO6eJr>Bz6)TuX@dRiT7(s!xGohYnS;9-cmN2-6KL%$*%C1DAR-#NCTRMXaQL%y4r4~GWN-^ zHm_tR%`Lu*4{twObg!=#RoVYgl`B*)qyBQY#g`Yt;09F}=~5b2fI^l*hFg<^uF4WK zV5yQ?ldoEj^Z~!5MU@fK_tyhENq5z53ufrDF@1_^H-ya0_}V6)fmVPG%R|o79GHOu znKnR9sl8!;G3yd~p8{XVv~<~T^fN^F6iIiL%pxY!)vq;UlEXM$UC_C#zpO)N#& z00Gru#sx)wmJ30JZV?y^F^Xo@!eVS^PuUPF)jZ*1!2oe4fQe?ZmH@TBY=xkDut=T zdn9k_{^hHA)8<^)gof3gngCr^`~hFqg1$S16cKuTqmZLFEL^?HBpXzY+b_RpP8Pj#3vjv>uGHI`#pk*8&gYBQZB?9qgXwH?l-r8(i5dXI*PQMTrXGkg z=X^dse+RcW3vhCYY?VU2mBQw|k#5-1Zf3u@G^Bs#m&-a(8vdsF_oy`KjG`#|{q|<@ z;%aAdDcb*Mv)SyQ$L73IN~#km=7M%*fHWFpnpVp0BCTnzK_Uznt%ZFH(hVf@q!@w#{O=523&x$IqknqT(Z`9hEE=(&a7 zvsY#R@*l>SYD36d001A02m}BC000301^_}s0szMZ?blm#qDT|~;Ai(&@Rr@J4%^Kg zEFTEE#!NDCgXhaNgl9}Dwd5Be(&=+Xyd>r}&vmEIiO;8l6 z!*{HX(~)6kY}$4wqaF*>JT7`d_xU*SVqEkPya!`1I3sCy>M^gttQ@mF+zqj2c^Z>N zd^rJ@Wg~g+y8@j1-N2)CJ7s&gn{qiBn$D-j@c!-Y9x*8jl0@aC-Z`=H-{XM@;bUVs zu!c#R#~uZvG#NamF$Q)@$CGZh;|m;37g^yJY0mJ}jd32~DWK^p z_Oi_L2_yeuj&l(-}I(*f#oO!|a=vmxkFlhJSV7AIRVhBufSa zu=*ka{t{Gv1WgiUSOPLTR*N9%K+uTNMNAS8)RcfVtTjnZP5aS)UDhu4H8HtKZ0|Z1 zw03e;Y->n+lfoQh-&^CN)nsEW-{g0&mN!{yS6C@KR5hGfGf^w8oTqV`rF0$Ryl^9? z_?b)M4Cf&ZSi}(YGq<2=CWGx1o5UH#6P#g>)gxz{tCSNq!(XN7LFwzC#pek6Hk@3I z?!JDyv;EbDExF4~wUx(xiW@hz#qwNH_A#2x&oP>kAQ%X#06}DE2&l3l%E}I?E>#)M z={S~Y4K2$VI;QDZ@6x)HTFQBo*7n@gFkEX@j%$6V(StNvV{gU#-Cn;ZUsk=_wKp2u z{>P6#8Lv5A+sl5&?!)slSHByC3sqZ+LjURP{vuorqieP4wB)nzRF|4go2aa#P-UbU zx&(C1Ku7^dR1H;=8&DyvsJ7vh--L4$#+s=7LquPosIIBLoooO0-FoZXyt{dMc5WTz z`)0EL;@khH(7d>nuca&fDI=@7QiSY!dOGMY*~-o4wz-^!FEop~e&AVxupzpgFscY^ zYPk&%RM|jC2BNANG8DFiB^^qr%(bTFbj%OJ{{!Lw3~T*t9MwqEx$22DWp1#%S+5j9 zNm+J5r1j$*-a~b{uW`erwpg7vaw~r_De|U7F~Rsl)K4v{?WOndL<2#ZvH0v3oj*K0-F=D1 zeZd`uSEFQ}KP&*hpQp9~7r`m2^VG9~=f>wE81V0R^$+V^NFCY}001A02m}BC00030 V1^_}s0stET0{{R300000000?1Sdjn# diff --git a/tests/extras/data/test_vcf_expected_output.vcf.gz b/tests/extras/data/test_vcf_expected_output.vcf.gz index 728fc91cf3562df7eea80e23e0050f5a3a2e080a..fcd2350ecdc91dc513a1b6afe2bac6bdffaa05c4 100644 GIT binary patch literal 4913 zcmV-16VB`(iwFb&00000{{{d;LjnLU4b5CzZ`{TeepY@3A-}YUyqNn8ktl#F*@_T3 z)-6GUrVyxIu9gLt+>l&3YSI7RGsD|($+TCeHxzCR~~&aQ5ce?6T2dic%14*_eQXI1j(begXUdX&c5W3@VF!h})@#*VBi>xcCD zc(q+e+5P#=>57~CEWeM^>ORV%^tnvR`!cR(%c!iP??#xc$7D3*l7%nF8b!6D2o=h@YElCJp$efw zSyxO#X%dD8ft^@aOHiKF2!)WKf9+XR5ka7Xz8v$HPEF0278C*UU8km!3ZsPXf4E>8 z>Rdh1`y$E~`MPgWl3?`FPJ|wb;EZq#Zfzx)u@OuwgDD~$iBQTYf+vBJkpw}Yz!4?T zu>{5_rVVT&o1m-^YQGb~C)}h_IzTHyj3rQ%sfD!?lx<}&Hs%jTDaF_Tf{eyj z6I31woOm>L0N#WQDp2N|&W>@v;D%z1WW9*789YQeis(g5bPUZ5O7HGuj9Uh50y#!7 zWGiBV3WZ?;W232B856^x0m&H0I8?V?LyoGP8Yx4JO`~oN8FMZ(#GnMEmBGiPODU5Q zV-jgc5k5615RK8EdKqK3f^8SZ+}Vp56A9I!))=R)os0=WR1$@Bdl_RY5x^v<5uX@7 z4GkHp8DlD;gd2`PCB2M^*)Zf9f!KQy<06OOFb;}-X(Wh=xe8hqLM(pDY7v}3^>q}* zG(utb(87a;TEK+nJv59W2zA^;OAlILP(%mKd|v}L!tB~(lOEe110q6G51PV2j0vrL zXA8{iqjHegs1EVs7={R})gx2i)f{8X-(%|@n`;#!vWW0K0-G5`wT15zrUYUf1@#F^ zV4NHD(4prLg7FBphc*KiL8MjTlL+GsvC;(_Gy}{QCj7)^CDozPB~z040GK2AN-NQKEH(jTHgYlO!Iho(1RXn zFh_XF{8~pPZOMJ|qZn^z^w6F|!Vpzy&mSR0c|EJc7Q!DH2;w<_6h5y?)C@8H!H7WR zRpXD@A;yEA9@;-)kf_yYJm$0G10uBc@|shEIaNyIVGAKpn?dLw6)BAK%3f`+XzW|4 zn9yE#RFYsi#CY|nsKn&H(5pvIFkVdTp}ow8T*N%!@|yuw67>vpa4>>;l+As{=9n#v zb1#fcp&rZmJ27wws@8s=5g6|ochG`-HfZi|4G89h&AHdYU}uVXlCAv4YX~CqapfPK z8O$v&SN@?3%z&8CUKkC>JiOrAe72I&LwdsWwcpYyLw#%z4$f^2;`WaFQ=fec5mRfQ z`6%YOEf0MTF$OdF{9yqo1e2aZuh2t{s%dAhau+q5cAJ06w=!*&1<`ZXM@ZjZ5!)1 zD+j0JI;2Q5PV?gQU{4AoHlkaY|8yEOSD2@iTKL>5wZQoEsa|uRs3bw^WKBH%nuk2Z zczw0^iod0%1hrA>!QrhksIPHp;nk3!2IIxy9@`72QUddFo)-Qn9~#XO=}`N07;@Bi zN3`&HMH-aX!8>p{ILR;uvukQOD1ER5GY_Tzpi`s#9bJ#@Ri|Ph=9_t1`iI2Ok}y+6 zdbP=wW|%xKmEZ9t<|wPBSDTtLr1`3$@xi&MM)@{CUz`5OX%x!eob;Njr~VTRS}EM_ zW(ETV6$ob=Z~pRguP@A3pOk*yXKT){)3_|FRg`Hm{Cv&rb{*u);QTsR=0&iGst7R3 z;6qZaf@+nN!DF1|)$=9}EJ9!*0!?pb>T@Xy(4M09mNHt$otnE!^_Fb2R>n}P(^exFn*Od@)ff1qU$ly=q0F~K86Q^g zKSAU^bChI{wMW1+u+9Z03RcPE%I1=_exRVcEnizrjsjRbk0I--ICGw{>*4x`BF`Ro zwfk)wmsT0;+$3AX=^h%E`8wW-VAQMQP=Yin9^<0UXG$J6wE^HWKxoSVmfDO9lJzD{ zU?muk|MU4V- zfHL#uR#>%8>L4r&aBGx32es;r*%L`0g9FzOQ5u2Pd#Gjuli9$!l|i%6v4od=9btg7 z-;x=#+4dconO*t$Q(UCcW&;{qA%7shOsd#%42T64Y^En!AZ>VnquS^U($8jEmS;Ad zxCqk3&GAK6#gHLG zP4Dt5N+I|VpGCZZIxM&AH7FjgLkKQG^RnVEb^CWHxG1$D2`AYnSHp$RZuJ^zI1n zHLO`eBWT&6;kpr399il~ECPT#xs|IlxE(k(2R5t{$S!NkY-nbeQ=gb8U6p>mNHiio zI!nHsYGuQij(W%7fgUq_eK&Qx{l@{^5YM6VJH_iO=hk4WG+|Y!U)jl-= zhOGDkUp7D=9cDBIz&%#ljw7aI+Y46oq(iNYJ@mg!Y#Q#WKWxvfy0fvT?9hTF1^Qsr z443r;nC2gVte~w%kIqatdcC`@X>6B2AQ6)JHmz!ak5H*w*~)%^xY%!74w$l2b4PAe zJS0^SRWQr$5wDw{-UP|gAKVuHL|b?7GH>g!hIamd$ta8C#bgWs%KFQyxXqH^Y`QfA z#2#*FhVELVUB0!WSFMRHWBWN!>ws>P1YtVAvzeR)?Cb7wXHq+lL|$#SYyVhxH}>Ev zAB|P-HF6{6K4w@K3{9_%c>Dh5-N{`uT79v(%9DD2y%$r0bIx1!f7?cBQaw+L1k0fa zY$7+#xejbz?r>Y8*D~C|@Aowa7e~dyv9u@544w6ISgd@9K7+oVbELAM7CQ zjx=lL5yx)rD7fsl&|Rhed~G`dq5b9N&09BOoLt^D0V{*QSsdsSrIpQQ zWJbS%UtV851F>Y@1v-pby!Rx2$?2zKp(? z?nHGjpF54+?NIsY76dt>zG?SzHPoBmH=tbEWRA7w%NTMKZ{n!B-9A89uRhYM!mWi~ z68F~8s&HHx;SMP5RF3t|%o&&gkaQ)NC{bN8}c z001A02m}BC000301^_}s0s!R&?U+k*;y4h;&+Mn*mfbDEN`BiZ4vrx_0)fH2l8eg* z**N$W+d#;tU)d0h2{6e_wssCv1w`s@Spxn3Ep?{z5QznW;y9*IE+~aTfrW*htg3~; z(PPsO-KauczqLKx#Zd*p3Fzt58{5C0>9HQ+IEmRc_aVwW^j&-Dw);R)RKzX}je-l~ zda66lZpf~=AJXpE<-uJpygJ&?;o4DTdsZ^2(y&$h+^f+LzU0DzQuoL@bq6$kulC}* z7^uEu&(s>v8bLatZaBE2s9Js&?ac*9GqWcJ=`({|z$&rHnMdT7{jsK>zQqu_H^mQA+~JatIRE0C`Z_uErUpl{E!4{E)Fd`1CGCT^&rp<+p*&fne2Mh zS2fvju!FT`HL6%TW6hr0_z&_Ft<>nAu z5mLJkUEaHU5FCg$j0ZiYBf`3d? zMk#@z37Z5`nQ;1^Qs#)#rsFJK+tWdYE1@GJmdO))NYr_H_k3j-vw4gUo|D3S8tasw z4Az4|W{9z&Z*X*y``lW-i}=x6KE&&3(o>R;$*uR5IV~hSHhk9)d}l+rjWjFfj6k#9 z0EZ@?##W3V=|_$quwXYtC0++_*~lX2+ovQ0w&7=Sf3f08U8WxwBQ&-;Qw~=}hhxkM z#jDytosKiyb;vy3M)wvpRM_t{$4_@-)mXPwMq35E%Do)oo)E@}U<+CXeA-8;nd5TE z=ZL2OV$UN_yqAz?C`v+zC$u0*K!9f@n&tN3i%goG2ZezmD|JN~)CaOWP(G!Cy#f*< zKcs@wc{QhvOa_(MeJKunvAC*Qegy+H=NJ-{WT$caDGW`FSwhlyu69 zBJ6hEmcb~kRjF~myp`R0*vhgL131~Ff z@^;97(%+i%{O4&@1|ACkZpmP`ojPYK~2 zdg(LykBfpp{#lJ=C(C~Fq}Na`isZw>_`>_qFQJ)DFQkIes)fgmYC{j_ukxy^7_8!n z!_FshwCD5i%$_J7i^0kbjHie-O)mCW}mk7rED;FjJbp@YtS@ zy_vi==dbtA8m~N#Xrtemm>KtuzumI^;eDiw0Z1 zGUn4hw>4k5E71U+$DN!&m(B)(LJ}g!6k-L5qKWV*QYAph?1*Q{RSH5XVZL7Y8=PVu z9Wj4g%c4Bpr>j?#$MxMVf39pjsyKeAi2Zm?3f|Fkmb#M{|3)1`R89-mB)V+qZkg1m z3+%;YBUfdJph&@TQqh9*v(%dm&>^xrGH6f+Z_NzcH*7LzzPbhPE;rxF*ynRL zmE8B)BxRFV_E!`S2^K{$$=WCXAM=~vUx(jX82VwQk4+q6Z;FfL*K+lEIxp&Raa-(4 z>8=(7KeA&od2zSBLg{Uvi+|c)u#AhAzQV;T`KoA;&eRV>QW6(KY!>aPcs02C>tg-* z9i9-!ZYxL`^nMfdOA~b}BQCJc)=MoEV+-1ij$sXJ?M;bki;mG+SpHL%5FcNiDaFiV z_hy6|kB_h82dh`5w7S`8dW-OJ363)&A%h0{Mme7m6Kue~QO;#V8GKPjyhQN7sJwLw jpB4ZBABzYC000000RIL6LPG)o8vp|U0000000000CTMk9 literal 4630 zcmV+x66x(9iwFb&00000{{{d;LjnLh478d}YaB-qhVS|nLVHQT67|_#O|k}K$Bu~u z#!f;EhGiqKEQQs|Xx9Q0^526j?MzK(ZhC#uNjz_Lb$xZs&Sqy9>($xS_2qIm|KsWN z8#|GM+3fktSHJ!AX8z;LXYUw+lX}R65 zJ{&zhn0*C3TkckKAubeR2eaAJSM!_Gv%7yjJia(QK0Lm<{d4^H@@9F5JUlx4yg9uk zA6~CcudY9Q_x<5NKffU2lh<$O?~hL2AN}y}(ZOtXdbQbIeEe$D>G?H3TCX-Acjt4l zXkJX@(XA<$f33gF&p%%-H;WfY-X&g#=k_MrovVkC^3=OuC*cN_{ED?L?pr!60Qy4D7%v&iW~W#gix!95z6mR zF;P336vUL$_E%9SB9@8(6~<@KAUB{wn@a3Jq}^UZXncr9j;Kz&mzaoHB1Mc)+=XnL z2w8@N>|R4;Tt9@F5f4DNy{{%pc{9v?+@FJ+O=z%{hCGK(Q>27Wq+qL6kQx&Ou{fmY_8LC%3J8YY_{8uT z+yr`zI?>BDG>{q-vtiTfNQrThS8a$z(Yt#Eo0zMr7~n2`-`q(k$xZ(eLaHIrme5=r ziPj#?%>;?|gtm%AOZGJzVn5Kcsb}A=0fA^vXcl55x@2dYA<;evY^X!hJ+>A|GG|vS z;>q8$YtPnN8nB93_6T!rNOW?E6e~z{E>IRwt6Opi2^1ZJD&jzNE+V4BNVE;Ch6Z0v zXvo5{w^|1E3F_L!pcd_6mIGY}_a+LQ!0$hWRN+Vh+vkS~87np!Tb97wAN?H~%$>U@#S8EJJ+NF_p| z2QQj}Z0kN~>l!Rbcjso~1zAZv4^hEVk?2%O3bZ9SrTXXUinKbHR)L}iJu;9Zyi3k? zXwi11!DBs;=;V;rphhQuG=}^-bUSe%d!iAZR6WbJDyAC-)e=oHyr z8*;&wn*kSx?m!2N5$GygZSXh^BsyKA6zEzmzr>gfYIW{2CP=i=H$!X54iRWv*TKsa zxydfM@dhapomXdpeDZ3^OBYu{qSG~o3KCu8o25)0mM5gIBclcS*&ugx(WpqPbIQ0P z(Jfa#HbtUy4T(SoUmg}%pdZ>=O7vEtMrVKg*UR<&wrvC9XYa2#>~&sX`G;g<>wv6H z(g10j*lu5jp`fL+ML;55l1l3R^}~^pOgZl6rc9m;Sk&EjcOO3B|(>S|Kag8=z|FV5GR?>}%^J8IOV@ zkA35VLCBOx{+y4;!_h2cR{Sk>Gzhv-CY{6EcpCIIu4L@Zp>Z^wMImi_<&5KT$j5of z*l*=$(_}OWY1}`G9|e7PBpLg9lSL@>6~Otry*C(WYU@XgJe7mY21I%nIz+o z<(zo4Gak-DzL}Ry{6peF6mMvVM%2jT`{90Bj^nVa+qBbAMB@Nw8yA0m+T)F;Potmr*_x}n0<|_d6Um_a z`I<#lf?UJZ9jv8-j2WiUXn5cz2a|IR8x+#)wg_Ya$OI&VpAYP_qHv$J!HkJ4cXG3D!AA_^$ zp?`Ugs$knK7aMZ&4gZ=Ov>Ic8DYQ)I0wz=*xo)e|p&v0#NP#qO}yQs?k`>I@_dKLATyDh%D76vz{x=5GOumTja3^LrB9CTHd zm;pFMN@)>9i*s?t2Jk5a_ zD3ECbl$1If_7}6Rp!ccJHle<#32Bal6s*J+=$Qk$Fp7)K0Ztl6FkcefinAwTvox_1 zVG9Jb4l^#OYOK{wW*oXgri?808+o^a_iHM}nrE#V)LQpQD*7ZnoGgfq^Gg9D4QH^G z28H3Q0E*?T8)nO?C-S77rO#K1+QoOXi*@MylFYt4WUuBrxKv6ia(Ic+R%5GIT(O@rpVhtB98f{3*`D}LdnMo_-{DT z@DP4?d2ZmIJv)#|z+I7AOH;N9$H^Et`4hOxt`g4FWMcS_6%S z@IUM3G}KMEb4j;X)OtB2G>z$Vpp<}ilf(sFEs4njhQG9z+mM=mgn4tb zx%b=HZQBzTJbMg%kI1%^r-VT%=!Wisxco4GcfPD!s~795Jg--GCn+Tw+jCp^Un*8` zvpeoGWkp&QMC3X-cR;*6(6%})Zbl$Y5RF1t8m^XosO*wq8-9OXv*wVcdE@Ocl=C;| zH#bc*^Z$vaZq{uM^|4SMTmNCx$94l&p=y=yZh5^LEl&`I*ZUkcg*p<|N&apZr*Psn zXBvSj!$sYXSaoY!!F9WZZfEMJ`Qr1r&CciRH~Ju-N0rW!quf@+Cu#r;Uvv6?F!eyh zoU8Nk)m!*9Ux2eqVyhJDtrV8`M!I23yP5s!Xh{FeFD`A1aelL`3#Q>OvU870lkX^s zqTfEv7r)-_OfE(H|7~7MA=o%%$aNS1Qw_x4y z618Rmvyi*)xQIB73O- z7KUJ)Na}(cRIC7vUn<+yYO@dGx$wSzJOA*mcl%+{yMEJ~UtIRiZC`Sn|%5i!I`W_D}mVN#W(=?hJY?;QKY_7Wu4 z1d8LBTC=9q^co9mBU#gGabOZBO2V{7UA?wfW{A@kf-^8O?Q1`}TA0L4G0El}n#U=M zmqekz4sXXmQ8dIZErWtf>&iBR;IQP-JTAE%tFqoNO>a++dxUgej0UX z2%k&SfugRWBs2rii&mZID8xXE0)L@(c-D&Z4NWV+Ek!fRyBM!SK+%ljqm+727i5FX zarDaZ15$C%tozDLET1GM!HbqYo^-AjzT^1zIv@#l{b<$lTv}+R*j=pS)JUU*;Dr(5 z#Kj8`MBC7eW7F~jpX|&axSEbNLkdzKFwtk#?BJlCj>6^|A&W8El>;wadKI7tnca8_*iVT=<8+r%XZ zTCtG^QOttF63q|e0FQBuO;XJC_IJq^?5Dp=SPA@LCm!^?b)Oz?MNElLj=x(k@0amc zx7(u%!X{+C{+$k8XlZaf=skSxKWNtWMq`Xk%xm29Dd9{QBZ57&0&#wg@@|eRF_wW` z{<@@^p(qI<9w3M$0Rf(sXqG$L7MVP$>NQ=F6;)AmRhMO5`4sdc@(kUFpjW5E68{1^ zcNzL8d7owOB2FsZe>e5-NzwV};n_=_Re#5i2Gx7S$#OJ&ZVbJNhi9=zQRduiI5%_M z9OLBK>Lms7owjMmWaf0Q4e_Dlta)KWQ|*`Q*^RSR-8;TaTx2*J?7f{5&#w2~CE_|L zb5t%8XOSR@3=jngAr2s#mw16K5r;5GUd5XI5bHgF0yq0ZxZiNf@5z50dVBh5_r(Xo zar5k|t6YTtVeJ3nQRSzI1Np@^`t}G4PXaTg?}SJG<(lW1?tDHq`VbNgkt8koObNlX6PL~xOG%uxb zfkG1EXn=>392ZgGs@=`AS$D+uK7?|;hUHDxnl3^ zO#fY_-^VLC@CL=Zm@1FfT@^yq%*(xOcGEJ$rsW4qydvwBziC1QMG7{vIuN{H6uzHS zXMu4&gpWfHCPS#LQE1Y7x^iC-pv z9+RCUiIUbBJ2=5B8`ncW4NYQub(7ThC8CtS)p{JIKJlYf{qTB)#_M~o|L(8iHL1Ji z2G_sHU+UJH)a@uquubX-cItjw|Du2S<6=qn4Nr(;_eGfuM!!V;)S{}goSsaP!;Sg& zWNh|Hv`Z~siICTTTCTTT) # Expected: length=8, repeatSubunitLength=4 @@ -288,8 +291,8 @@ def test_annotate_vcf_rle(vcf_annotator: VcfAnnotator, vcr_cassette): assert "VRS_RepeatSubunitLengths" in duplication_variant.info # Expected values for duplication RLE - # REF should have length=4, repeatSubunitLength=4 - # ALT should have length=8, repeatSubunitLength=4 + # REF: CTTT uses RLE with length=4, repeatSubunitLength=4 + # ALT: CTTTCTTT uses RLE with length=8, repeatSubunitLength=4 vrs_lengths = duplication_variant.info["VRS_Lengths"] vrs_repeat_lengths = duplication_variant.info["VRS_RepeatSubunitLengths"] assert len(vrs_lengths) == 2 # REF and ALT From 491de1b4098297a33b8069ccef6530425175fa78 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 02:04:52 -0500 Subject: [PATCH 12/41] Refresh tests/cassettes/test_normalize_allele.yaml --- tests/cassettes/test_normalize_allele.yaml | 115 +++++++++++++++++---- 1 file changed, 93 insertions(+), 22 deletions(-) diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index bae6dd33..6fdae133 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -417,7 +417,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -447,7 +447,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -477,7 +477,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -507,7 +507,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -537,7 +537,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -567,7 +567,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -597,7 +597,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -627,7 +627,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -657,7 +657,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -687,7 +687,78 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 06 Nov 2025 06:05:59 GMT + - Wed, 12 Nov 2025 07:04:34 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: + Connection: + - close + Content-Length: + - '976' + Content-Type: + - application/json + Date: + - Wed, 12 Nov 2025 07:04:34 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: + Connection: + - close + Content-Length: + - '2' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 07:04:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: From b1a7b5fc880a428f5a34ef2e3cfe08725b534e6b Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 02:12:03 -0500 Subject: [PATCH 13/41] Update comment --- src/ga4gh/vrs/normalize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index a0b5fa28..7267aa96 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -149,7 +149,7 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): rle_seq_limit=rle_seq_limit, extended_alt_seq=ref_at_location, ) - # Re-raise if this is a different ValueError (shouldn't happen with valid input) + # Re-raise if this is a different ValueError (shouldn't happen with valid input and assuming bioutils hasn't changed behavior) msg = f"Unexpected bioutils trim error for non reference allele: ref='{ref_at_location}', alt='{alt_seq}'" raise ValueError(msg) from e From bce957a809e513a0a26a558e21aa7216ca79124f Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 13:54:51 -0500 Subject: [PATCH 14/41] Change test VCFs to uncompressed text so diffs can be seen going forwards. --- .../test_vcf_expected_altsonly_output.vcf | 246 ++++++++++++++++++ .../test_vcf_expected_altsonly_output.vcf.gz | Bin 4662 -> 0 bytes .../extras/data/test_vcf_expected_output.vcf | 246 ++++++++++++++++++ .../data/test_vcf_expected_output.vcf.gz | Bin 4913 -> 0 bytes .../test_vcf_expected_output_no_vrs_attrs.vcf | 241 +++++++++++++++++ ...st_vcf_expected_output_no_vrs_attrs.vcf.gz | Bin 4448 -> 0 bytes tests/extras/test_annotate_vcf.py | 27 +- 7 files changed, 749 insertions(+), 11 deletions(-) create mode 100644 tests/extras/data/test_vcf_expected_altsonly_output.vcf delete mode 100644 tests/extras/data/test_vcf_expected_altsonly_output.vcf.gz create mode 100644 tests/extras/data/test_vcf_expected_output.vcf delete mode 100644 tests/extras/data/test_vcf_expected_output.vcf.gz create mode 100644 tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf delete mode 100644 tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf.gz diff --git a/tests/extras/data/test_vcf_expected_altsonly_output.vcf b/tests/extras/data/test_vcf_expected_altsonly_output.vcf new file mode 100644 index 00000000..bb5890fd --- /dev/null +++ b/tests/extras/data/test_vcf_expected_altsonly_output.vcf @@ -0,0 +1,246 @@ +##fileformat=VCFv4.2 +##FILTER= +##fileDate=20160824 +##CL=vcffilter -i - -o - --javascript "function record() {HG001.PS=\".\";}" +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER=0.8"> +##FILTER= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 +chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663;VRS_Ends=82664;VRS_States=T;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 +chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284350;VRS_Ends=284366;VRS_States;VRS_Lengths=15;VRS_RepeatSubunitLengths=1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289464;VRS_Ends=289466;VRS_States=CACGCCTGTAATCCCA;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399;VRS_Ends=28946400;VRS_States=C;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 +chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490414;VRS_Ends=490416;VRS_States;VRS_Lengths=0;VRS_RepeatSubunitLengths=2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 +chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=.,54220023;VRS_Ends=.,54220024;VRS_States=,A;VRS_Lengths=.,.;VRS_RepeatSubunitLengths=.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 +chr19 54220999 . A T 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Error=Reference mismatch at GRCh38:chr19 position 54220998-54220999 (input gave 'A' but correct ref is 'T') GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 +chr19 54221654 . T A,P 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.Zzlc24htmBV1HZZzWYgPD2_GfMInkrZu,;VRS_Starts=54221653,.;VRS_Ends=54221654,.;VRS_States=A,;VRS_Lengths=.,.;VRS_RepeatSubunitLengths=.,. GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 diff --git a/tests/extras/data/test_vcf_expected_altsonly_output.vcf.gz b/tests/extras/data/test_vcf_expected_altsonly_output.vcf.gz deleted file mode 100644 index 7de209654999e8df9bdbcb0bd4810313573b931c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4662 zcmV-663Oi!iwFb&00000{{{d;LjnLR4b5C_Z{x-h{_Ok;!uO>`e8Rr(5{U!2zB`{$ zU(Rm{8Z?DLOO(ZeA{CPI#Vz{ZJG*>aicG3IkAvnzf=J{u&&eVty<7Hl~ zqw4s_(|3>fQOp?c3|)Z_nQxU!L6D9KDIld68_YB+rfyPtr7iyQ;V-gH2SH z@#641xW@v$iK_UR5vqt`0zNyvIDVWj>x+ZeN$@&&o!fuC{%7Yl~wfJ2$S`gjD}pY@cEd$#iXHO zp_CEGNRseV2tB|RwDp+-r1N_$XAj8Z6|%wx*5Pp>Sb z5Gs^)#Uzv_VQ3K4iFLIEXF_RQMSm}eT$L=qmOnb^vDEfgkxxHYr%}2U|JbW6XD2&QbrLx3zUp32m%F; zXn~F`Fh((bU=!H{Wra}toe4e>CXLboS_@)qfuc+;thFG=VNw((BSaGubuD31!kFXl z&MpWckU0}3Bo7e+C2A7{3Y+biU?kKSBb02sn9z=pDU2y4Y?orJe}WK&AWofyu@4+} z83NJ5SpJ}}4My3uCfHd2ct|9MI<=KOm9d0yj1h`hkRH!*gDhbTu8y@`pAp_xJH-JOkb%YaQF z$5;&6nwXG6VVJUGR83u)os_1qbjFH$`E7Is9Q(In#&9^C=1fs;A7FH zlu3y(iL|2#pPCbh#%NEyjj>w6whLqK>`jb?gz8XhjMLW6#)Kd$i6Xkajj@ynP!iM? zpBO$34H>E%V=1A88;&3)y^V?4FytCR*n1P>B8Sf~4vKziEQpD@3R)JzTKtgJCOCoW z>m-V4gu?Ejg$E6_fCbQrN9<;!ahz^?hu?B2}*|ocwn%oI_6v^C}cC6pe91QD8htV4$Kgs;ao zeluXO2f~br2QE;ab+ypapK}<>lfMp{gubw1Je==Y588o2?2nT83mIY@EcC4Xg5(4- zwIv!_kFxi5Yckmo&!kX>#9V}5aS<= z2vl7){+JzNJm~46{SyX>T8+k2K07`jLTfLtIVG4=r8FM45CXLsg#J;H!Z@$&X?sOu z-$KQN_PV2z1T!GUt4Bp8ruKziJ#vEaVqy>NWj5p@<^h-A45*T*XP|?F5!9n>?khIO zY+;;x%g7Y!v7EmXgMgs2_WO*$c+a?l7UadCxxY0am=iYVUJHYrDdtJG@*A%qh|0&6 ze{^Orx4c~Whb}M!VnTb%XgKEK1=r@qN=6Um2{YDyOQ#I=u|YUEw>5~{JMK??_ANwA z*1qyl%yU~F`Wj*kX7c&N0!Rp^JcVANhZ>c%9}jI%bI*TdB`{B$`Cv1nG2W!;S^LnO zU7>e4X}?W5vvsVPBilzMP@s|@OETv~WFB&fl7ak$6!mQyK#`8ZDtf0Pf6=7@5reK`y{ z>boOa__`tu%In}AxE!2h7=zh0wH%Z_c!HUS(tpsYQT~pu$M&jIu@LjkJT3i0VrWU2 zsUp4FW(*%HN#y%++K66AW4@ z-0o%u0|gZbXB%(-@?*~z=BqDCKksL2&aTq9EUQ(NX)^rznw#x9$d|#{Rj|y9U=dXj zV3fh9q*?{lDk+19ILoW2O&nN+z(NF?9PZ#pXs)`%%!|8~}%WTb0SeejB?lqx&=tiueIQ$^g*q7f&?+7_z^S6J=FLv$PP8QIXgW zow?uPdcUn+iYP#PMC~PIw2nKPyQF$gwpnXq$m+CZovWGe%5E;17Eld=wl82SeCF}iwpt~$zTP8;V+&qsV>#8_&k+Ju~_n(S9 zd)Q_7%Qh}885`UrTg2%e49k2S@2p_d({U(48Wj(5QRg!y_nX=Qh#4TXWdOI@j0=+W zCQaZ@a3KHJ(?h;3VVRczX5FxMc1h14@+^JYgQ>kNIL!e+uHxVf)@+^3E#-xmbCy|B z1)qS-ytx$aS|{})EDH#0lsyGC^~UXqq>mwh>-#8;fb|~K?80PrVcnfUbE8uUFZnvb z0J7hb8ME2;9hsS3`}t#Bq|s&rjIEL1uwN!s>@)_<0tK7tNft=EJfKnS>I~A)W?GhK zHl4acbc7sAx!r8?!c}6x8u!*wHD5V?=ik5k=-9ov1Q|T~e!ISpi(`6p3w3jRo>ehq z$dKu6UPUP^KCI6o-as9e+w~fVNAn^Fb+m-qh#Up+uk&=fuuMN(5qDELG`mTo%Kq3` zxsU1k66@w7S-Rw_f)2nf%coT`Uj^WG8bb>RY*3nLxc|nBp`ahxg?0h;MGd~2CYgbJ zbwp=1(VMCO_jY*N>nzPblH7d~eIYlOCQc&U0tL1YM@eQ^E$VbLs%my=K94NYQ7i9G z@Lt0`OK1eG8Z=rrl8PfMJ&8pCaA&u2l?IoCrsklARRY;%eVGm2>~iW0^Q5cNms^R( z#Aj#8A4jch6w~R?moV&fsg>TSUT&~i_Za9D8MM+Oo>z@>kMgFOUw$)hx||!j(5l*( zCcsb?pApLj=(Cp@jR1tlTH6W4lx_QkH9Z+nYhw@o7l}>7UHZfJ+|r$mBV~scBrDJd zqh`3QC%`oS1Y!kkHF|Jvy3y;yRV`z?`T>cM%(rP(1AGRh?#|ZsJ*>lfN{lnWJS^9(9!k=jC?p@|>9oEn;9xxeYalDvZ1AwyevJ|&j@{3Kk zW`Niu49(D8o3yuY?dVlAv1M$34%7yq+a$pC{3!TX_MeN z6oF0TCOB7t&C4BaYr;}jL~IMBjI$C(fV119VC!0j8~FXc=HTK8+FoOA*OikuCl?p3 zH`o8en`T&dF)XKC8KXZNdTKY|6sl4A;g;81quV`1;k1uoyHFEe?Pc%sW}lq6ggqbZ zAnlGcYvvKBZtWxw78qjWAg)|;)(Cp!RC$uhCOA8cnJ zn>lAE;_Q6@xIv9;#TLeja+7B+@2kAN?AC2&f34HdesXeg+bmQW{N3IU{h_or*^JES zH}J{p%O?<&%=?1QPju&?OYa=4i`246M@SXFF-v8)E6cWQLo~C6B|SnW|9<22>Oj3ZOf`B|FS$U+==O4 zF?LMdea&w)fDjtIzbNaQ8wFayS29 zICuK~`s0U#%a1n)=WhniIJr2ePlgVx^9Qv=AGjYm|LVUIv(e##T>tFARFY$(XQk9WY0CT?yi;C9!V^MXFX$b zJLt|l$ML31pCs7zqOdo2S*ep^ceadEGmR2D(F}0n;u-LxbzsG@WqZCyHgvP@-9$H4 z-^V^SNBy+tTAVvq?$nMgtD{@&rbxf}d?SXJpCuonjqfiuw_$p^K0AfW&l=y~d2y@f>6!ULVyp4Bdng1@!uk_^C6yNTeI(;wm zD!rGRXRUMXsPi}5{(&crpMw4Jj=$lq<>%O2FND+~H?z}0e?``2ywKIv%z4G0mE|4y zR9%DqcUniebxF*Q91P9c2=RawC54AfVV#p9hqCOgYDP=_W&MA!{-3F?9-^ac{b(Ut ztRE3`y1L!01xAQSeBp7Mrv-d~;;PPe%cVk_w-25-;9;=LvE(cr~+F|QYuum=8QM+4~p{CFMg&1mrdljemRbV^k?hn;tZ!fRFtN0&u zv-kLWK7ud-YR zD9dt|HuwH#;1|E2hufyMYCDcnkI>EAMR=vt zmpHe7_riEd+OD<2?GyE+ZPUgyN)lSvwG-^Ly|jH|ocwXLg!+ajB=FlJN(JLzqJC;o z`~HYNKKoOKo0H(|4xK+fKHqMPHH7RPX~5 s+A)Ct0xhp9H0Trn03VA81ONa4009360763o02=@U000000000006B&IGXMYp diff --git a/tests/extras/data/test_vcf_expected_output.vcf b/tests/extras/data/test_vcf_expected_output.vcf new file mode 100644 index 00000000..064c4f89 --- /dev/null +++ b/tests/extras/data/test_vcf_expected_output.vcf @@ -0,0 +1,246 @@ +##fileformat=VCFv4.2 +##FILTER= +##fileDate=20160824 +##CL=vcffilter -i - -o - --javascript "function record() {HG001.PS=\".\";}" +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER=0.8"> +##FILTER= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 +chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.esmv8nARRRdSysDFuIErJxRAdUSVsWNE,ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663,82663;VRS_Ends=82664,82664;VRS_States=,T;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 +chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.xgtXGA3ZkV1WgMc6eD9l64fX27S_TScW,ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284349,284350;VRS_Ends=284351,284366;VRS_States=,;VRS_Lengths=2,15;VRS_RepeatSubunitLengths=2,1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.nqqTUy-a2gssemOmJb4CJv-HNuFAmGrO,ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289463,289464;VRS_Ends=289464,289466;VRS_States=,CACGCCTGTAATCCCA;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.yPr2pVvJeWHDHarhzAvOCb5Cn9UMF6a5,ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399,28946399;VRS_Ends=28946400,28946400;VRS_States=,C;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 +chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.aje4-hx7eihWndAwfhzNq_7CZV3bRMXf,ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490413,490414;VRS_Ends=490416,490416;VRS_States=,;VRS_Lengths=3,0;VRS_RepeatSubunitLengths=3,2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 +chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.LlmfhAC3gQlVQUwXWYiYjrn5V_K8vBz1,,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=54220023,.,54220023;VRS_Ends=54220024,.,54220024;VRS_States=,,A;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 +chr19 54220999 . A T 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Error=Reference mismatch at GRCh38:chr19 position 54220998-54220999 (input gave 'A' but correct ref is 'T') GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 +chr19 54221654 . T A,P 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.kea5G-J1teg0iHMbgUELy-4L9lbJkgoj,ga4gh:VA.Zzlc24htmBV1HZZzWYgPD2_GfMInkrZu,;VRS_Starts=54221653,54221653,.;VRS_Ends=54221654,54221654,.;VRS_States=,A,;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 diff --git a/tests/extras/data/test_vcf_expected_output.vcf.gz b/tests/extras/data/test_vcf_expected_output.vcf.gz deleted file mode 100644 index fcd2350ecdc91dc513a1b6afe2bac6bdffaa05c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4913 zcmV-16VB`(iwFb&00000{{{d;LjnLU4b5CzZ`{TeepY@3A-}YUyqNn8ktl#F*@_T3 z)-6GUrVyxIu9gLt+>l&3YSI7RGsD|($+TCeHxzCR~~&aQ5ce?6T2dic%14*_eQXI1j(begXUdX&c5W3@VF!h})@#*VBi>xcCD zc(q+e+5P#=>57~CEWeM^>ORV%^tnvR`!cR(%c!iP??#xc$7D3*l7%nF8b!6D2o=h@YElCJp$efw zSyxO#X%dD8ft^@aOHiKF2!)WKf9+XR5ka7Xz8v$HPEF0278C*UU8km!3ZsPXf4E>8 z>Rdh1`y$E~`MPgWl3?`FPJ|wb;EZq#Zfzx)u@OuwgDD~$iBQTYf+vBJkpw}Yz!4?T zu>{5_rVVT&o1m-^YQGb~C)}h_IzTHyj3rQ%sfD!?lx<}&Hs%jTDaF_Tf{eyj z6I31woOm>L0N#WQDp2N|&W>@v;D%z1WW9*789YQeis(g5bPUZ5O7HGuj9Uh50y#!7 zWGiBV3WZ?;W232B856^x0m&H0I8?V?LyoGP8Yx4JO`~oN8FMZ(#GnMEmBGiPODU5Q zV-jgc5k5615RK8EdKqK3f^8SZ+}Vp56A9I!))=R)os0=WR1$@Bdl_RY5x^v<5uX@7 z4GkHp8DlD;gd2`PCB2M^*)Zf9f!KQy<06OOFb;}-X(Wh=xe8hqLM(pDY7v}3^>q}* zG(utb(87a;TEK+nJv59W2zA^;OAlILP(%mKd|v}L!tB~(lOEe110q6G51PV2j0vrL zXA8{iqjHegs1EVs7={R})gx2i)f{8X-(%|@n`;#!vWW0K0-G5`wT15zrUYUf1@#F^ zV4NHD(4prLg7FBphc*KiL8MjTlL+GsvC;(_Gy}{QCj7)^CDozPB~z040GK2AN-NQKEH(jTHgYlO!Iho(1RXn zFh_XF{8~pPZOMJ|qZn^z^w6F|!Vpzy&mSR0c|EJc7Q!DH2;w<_6h5y?)C@8H!H7WR zRpXD@A;yEA9@;-)kf_yYJm$0G10uBc@|shEIaNyIVGAKpn?dLw6)BAK%3f`+XzW|4 zn9yE#RFYsi#CY|nsKn&H(5pvIFkVdTp}ow8T*N%!@|yuw67>vpa4>>;l+As{=9n#v zb1#fcp&rZmJ27wws@8s=5g6|ochG`-HfZi|4G89h&AHdYU}uVXlCAv4YX~CqapfPK z8O$v&SN@?3%z&8CUKkC>JiOrAe72I&LwdsWwcpYyLw#%z4$f^2;`WaFQ=fec5mRfQ z`6%YOEf0MTF$OdF{9yqo1e2aZuh2t{s%dAhau+q5cAJ06w=!*&1<`ZXM@ZjZ5!)1 zD+j0JI;2Q5PV?gQU{4AoHlkaY|8yEOSD2@iTKL>5wZQoEsa|uRs3bw^WKBH%nuk2Z zczw0^iod0%1hrA>!QrhksIPHp;nk3!2IIxy9@`72QUddFo)-Qn9~#XO=}`N07;@Bi zN3`&HMH-aX!8>p{ILR;uvukQOD1ER5GY_Tzpi`s#9bJ#@Ri|Ph=9_t1`iI2Ok}y+6 zdbP=wW|%xKmEZ9t<|wPBSDTtLr1`3$@xi&MM)@{CUz`5OX%x!eob;Njr~VTRS}EM_ zW(ETV6$ob=Z~pRguP@A3pOk*yXKT){)3_|FRg`Hm{Cv&rb{*u);QTsR=0&iGst7R3 z;6qZaf@+nN!DF1|)$=9}EJ9!*0!?pb>T@Xy(4M09mNHt$otnE!^_Fb2R>n}P(^exFn*Od@)ff1qU$ly=q0F~K86Q^g zKSAU^bChI{wMW1+u+9Z03RcPE%I1=_exRVcEnizrjsjRbk0I--ICGw{>*4x`BF`Ro zwfk)wmsT0;+$3AX=^h%E`8wW-VAQMQP=Yin9^<0UXG$J6wE^HWKxoSVmfDO9lJzD{ zU?muk|MU4V- zfHL#uR#>%8>L4r&aBGx32es;r*%L`0g9FzOQ5u2Pd#Gjuli9$!l|i%6v4od=9btg7 z-;x=#+4dconO*t$Q(UCcW&;{qA%7shOsd#%42T64Y^En!AZ>VnquS^U($8jEmS;Ad zxCqk3&GAK6#gHLG zP4Dt5N+I|VpGCZZIxM&AH7FjgLkKQG^RnVEb^CWHxG1$D2`AYnSHp$RZuJ^zI1n zHLO`eBWT&6;kpr399il~ECPT#xs|IlxE(k(2R5t{$S!NkY-nbeQ=gb8U6p>mNHiio zI!nHsYGuQij(W%7fgUq_eK&Qx{l@{^5YM6VJH_iO=hk4WG+|Y!U)jl-= zhOGDkUp7D=9cDBIz&%#ljw7aI+Y46oq(iNYJ@mg!Y#Q#WKWxvfy0fvT?9hTF1^Qsr z443r;nC2gVte~w%kIqatdcC`@X>6B2AQ6)JHmz!ak5H*w*~)%^xY%!74w$l2b4PAe zJS0^SRWQr$5wDw{-UP|gAKVuHL|b?7GH>g!hIamd$ta8C#bgWs%KFQyxXqH^Y`QfA z#2#*FhVELVUB0!WSFMRHWBWN!>ws>P1YtVAvzeR)?Cb7wXHq+lL|$#SYyVhxH}>Ev zAB|P-HF6{6K4w@K3{9_%c>Dh5-N{`uT79v(%9DD2y%$r0bIx1!f7?cBQaw+L1k0fa zY$7+#xejbz?r>Y8*D~C|@Aowa7e~dyv9u@544w6ISgd@9K7+oVbELAM7CQ zjx=lL5yx)rD7fsl&|Rhed~G`dq5b9N&09BOoLt^D0V{*QSsdsSrIpQQ zWJbS%UtV851F>Y@1v-pby!Rx2$?2zKp(? z?nHGjpF54+?NIsY76dt>zG?SzHPoBmH=tbEWRA7w%NTMKZ{n!B-9A89uRhYM!mWi~ z68F~8s&HHx;SMP5RF3t|%o&&gkaQ)NC{bN8}c z001A02m}BC000301^_}s0s!R&?U+k*;y4h;&+Mn*mfbDEN`BiZ4vrx_0)fH2l8eg* z**N$W+d#;tU)d0h2{6e_wssCv1w`s@Spxn3Ep?{z5QznW;y9*IE+~aTfrW*htg3~; z(PPsO-KauczqLKx#Zd*p3Fzt58{5C0>9HQ+IEmRc_aVwW^j&-Dw);R)RKzX}je-l~ zda66lZpf~=AJXpE<-uJpygJ&?;o4DTdsZ^2(y&$h+^f+LzU0DzQuoL@bq6$kulC}* z7^uEu&(s>v8bLatZaBE2s9Js&?ac*9GqWcJ=`({|z$&rHnMdT7{jsK>zQqu_H^mQA+~JatIRE0C`Z_uErUpl{E!4{E)Fd`1CGCT^&rp<+p*&fne2Mh zS2fvju!FT`HL6%TW6hr0_z&_Ft<>nAu z5mLJkUEaHU5FCg$j0ZiYBf`3d? zMk#@z37Z5`nQ;1^Qs#)#rsFJK+tWdYE1@GJmdO))NYr_H_k3j-vw4gUo|D3S8tasw z4Az4|W{9z&Z*X*y``lW-i}=x6KE&&3(o>R;$*uR5IV~hSHhk9)d}l+rjWjFfj6k#9 z0EZ@?##W3V=|_$quwXYtC0++_*~lX2+ovQ0w&7=Sf3f08U8WxwBQ&-;Qw~=}hhxkM z#jDytosKiyb;vy3M)wvpRM_t{$4_@-)mXPwMq35E%Do)oo)E@}U<+CXeA-8;nd5TE z=ZL2OV$UN_yqAz?C`v+zC$u0*K!9f@n&tN3i%goG2ZezmD|JN~)CaOWP(G!Cy#f*< zKcs@wc{QhvOa_(MeJKunvAC*Qegy+H=NJ-{WT$caDGW`FSwhlyu69 zBJ6hEmcb~kRjF~myp`R0*vhgL131~Ff z@^;97(%+i%{O4&@1|ACkZpmP`ojPYK~2 zdg(LykBfpp{#lJ=C(C~Fq}Na`isZw>_`>_qFQJ)DFQkIes)fgmYC{j_ukxy^7_8!n z!_FshwCD5i%$_J7i^0kbjHie-O)mCW}mk7rED;FjJbp@YtS@ zy_vi==dbtA8m~N#Xrtemm>KtuzumI^;eDiw0Z1 zGUn4hw>4k5E71U+$DN!&m(B)(LJ}g!6k-L5qKWV*QYAph?1*Q{RSH5XVZL7Y8=PVu z9Wj4g%c4Bpr>j?#$MxMVf39pjsyKeAi2Zm?3f|Fkmb#M{|3)1`R89-mB)V+qZkg1m z3+%;YBUfdJph&@TQqh9*v(%dm&>^xrGH6f+Z_NzcH*7LzzPbhPE;rxF*ynRL zmE8B)BxRFV_E!`S2^K{$$=WCXAM=~vUx(jX82VwQk4+q6Z;FfL*K+lEIxp&Raa-(4 z>8=(7KeA&od2zSBLg{Uvi+|c)u#AhAzQV;T`KoA;&eRV>QW6(KY!>aPcs02C>tg-* z9i9-!ZYxL`^nMfdOA~b}BQCJc)=MoEV+-1ij$sXJ?M;bki;mG+SpHL%5FcNiDaFiV z_hy6|kB_h82dh`5w7S`8dW-OJ363)&A%h0{Mme7m6Kue~QO;#V8GKPjyhQN7sJwLw jpB4ZBABzYC000000RIL6LPG)o8vp|U0000000000CTMk9 diff --git a/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf b/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf new file mode 100644 index 00000000..c81bb519 --- /dev/null +++ b/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf @@ -0,0 +1,241 @@ +##fileformat=VCFv4.2 +##FILTER= +##fileDate=20160824 +##CL=vcffilter -i - -o - --javascript "function record() {HG001.PS=\".\";}" +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##contig= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER= +##FILTER=0.8"> +##FILTER= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##INFO= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##FORMAT= +##INFO= +##INFO= +#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 +chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.esmv8nARRRdSysDFuIErJxRAdUSVsWNE,ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4 GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 +chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.xgtXGA3ZkV1WgMc6eD9l64fX27S_TScW,ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.nqqTUy-a2gssemOmJb4CJv-HNuFAmGrO,ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7 GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.yPr2pVvJeWHDHarhzAvOCb5Cn9UMF6a5,ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 +chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.aje4-hx7eihWndAwfhzNq_7CZV3bRMXf,ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 +chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.LlmfhAC3gQlVQUwXWYiYjrn5V_K8vBz1,,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1 GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 +chr19 54220999 . A T 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Error=Reference mismatch at GRCh38:chr19 position 54220998-54220999 (input gave 'A' but correct ref is 'T') GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 +chr19 54221654 . T A,P 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.kea5G-J1teg0iHMbgUELy-4L9lbJkgoj,ga4gh:VA.Zzlc24htmBV1HZZzWYgPD2_GfMInkrZu, GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 diff --git a/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf.gz b/tests/extras/data/test_vcf_expected_output_no_vrs_attrs.vcf.gz deleted file mode 100644 index 03fae3361edcb48d6f6670507b15ffab9abe5f30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4448 zcmV-m5uffKiwFq5D->x0|8!+@bYFI3W?yA^aAjk3Wn^D(b#!obbYE_7Uv_eHUtx4~ za&shxmI6XYLYP8$+Loe>n{AuDx;lZ0m5LoK2#GA#|)Qw|r@a8vlj|Mt)6Yqc^ zY$HjS`mA|=u;>r7i>)2s+Oc*b{kNS@?!wI=tvADY*w@I`%|JNIZ)sMo&AEiF^$1_|Hyl|9^4+xVEw;3UI?aHJVEDy%>i5qrXH_b7X z-7xC9LDF?YH(17g+>O0tcj(56``Z>KDKH6kC@0SAG3go;JCZn@a{x?MU?PH<0)0Iu z&oL$DR1ye3?Hp4eiMS&GFh!2Z9m*6YeLbekF&W2H+SGnMrjuh*NgXDzcs(XY1t=Ac z03kib1t>?-wn0FN;VBWEB7m*OMJ{1RZAOU%04Es}) zNW}oM9_Q&KDdB=K41k%ZlSEXgO@i<g^JpUAyq+NkNF{YQxGB;27tWC-L$z4kwV>fr$necw->lObHhP2 zDM}Pa5Op*+A+}6Vf+zvBAh#Dmge@UWI9n!cTiOWD0!CXF7*YuiXaR3qAOu6MfmEW7Qb}nyAQYt~w=%KEB&JM+hnARG8q@0SFY! zOdyrmWWxkOj(}*P_-Yju+TjozqDyhsTOleKi);dDVS5c!O&JW(f>V{)5+d!^Cdjt_ zQ3r7dby{b36=M;i5G@qWDeF{F7K2cBZG(_){U8`)hyhU9SjDPB${hx?AFFjJyb2qb z*$(77Xhm*dh?cA{!77*wauiXRsHhl%NQ@wDY?ll*1X762;A;~VQphA>5QC<@wo%ax zN@W@17zc}W)!iMST)3u(6$+D2FX6mOT-2Zh_R23BO#Ho8EOhK@)y{mz^1}> z09AyU5mCd80|{+}gxJi6gf<0=Nl>pHBOr)?Ld%kh0Lm&eMTAg-A)!mffPs?FAT|Lx zuq?bLC4B;owNb(x2^wm%f=S6Bp-oy-8`5iLgqo^;6BOLGOS%e45!;NmfNY?cEy^JQ zgrS71xC7!WlBLB_-YXCTkI*3jJSa|p2;|bNE^~?b0Zy& zA-y&ek|G2NU7BcY$g<8$Wt~b)Aj54I8*W1?2{)T4<+Xr>Hk8B$EeRYM`o}4!kY1b8 zNr4l3H5qSCMqsZi80$0bmwjd(a1H#64jct?^^6-KR`O{KHl;sIB)@Dh^1oW|iQ#!Ym0@7Iez^ZuyjkWpU zQ9zb2b4nMnEkS{bUH2^4AkSSemGs4 zNmYwYAi-J5a~txMQZQ3nxnLC3b5p1|LXaWHX3i@fQU@|B=17eZXrUCP!&_T|{)|g7 zBZnB44u-@ww$rv5kYK6gNgV&ta41gO7S z$$05pR0s^Jv}VgGZ2?pxR-W4nV*G#BY}o21OAQ5P0B0LVZ|@3!Re$wE^fO*t)4C44 zI8MfHC{X$JHSPJtiiTF}+8RbPYv3lX!icRWKN(xe*pID|7e>i)>RB4W(h!zFZ#MAV zAjn>8;|<(!Fz{n{H1oXe7v=QTg(?2nU3eM3{>WP2Y$+e2c@p~r{jHaN>GlH8nt3Ay z5?cygf3eH}lp+0&95+mIH)9R4aA&^$Fg5oLUwiZ9XE~~%4M+7Qu{-f{H#eOsRx%IQ zHp*T#*B+%?Q(Tp~`igiIH;uidZ1cEm<7uq^#d6cv9QolWi-?Mhx-Z=r*BbkyvF4Iq zeaXS}vS^|`saxvizNc81cwrhDeZTttX%>Z}P47O>y;wV=gX@O_FL;56aWwHZcF--{ zNl~o8osGO%#%GLr(`*4MW(r}Q2I^MLILn_*17F>#77%@1j-q+2wt1+)^fI)aO{e># zC=8Y_@Kj%BH6w-ZC7#t%dp7a=+U0@4IqjLBSWn8C{_0Y7*Tl~@VK`G^b;G5VxxQL< z1?fE%z)8;yT;=r(T+WxkBv{pB!Dq)Z>7Yya>KhQ4GZ2JxE%1!&x!kY!|bgDeo zMxL=B`-zuoj54cS&`kG3i|g%C8nxb?68$vO!YI^q$`dhlC`F0q(`htIGtnZe}e-T+(2!<+Mj_pRe2cCCllqk z+n+^B9koO2h}13bOFx(ow5J!>D7`5zo1F%3qF*)^zr=KQiC*TwAEx9>tQ;WSmZ!1b zA6shGfu~A&x0EKSM5G&J={oHCq24t&*G)IcybGeftC8w!c~1pzN8K}2g?vDQ2oaKjLAo zOKa(Mv+Y(kvl^o+MW{;Y%*wX5%(6JKC&z$I&_uGw3uPsxt~bZ&0}h3QEUIyEqU1&zf$l2I2)_ST)_5NqzfV zw_ceiI*s+~Ky?7}AxUjhtD~75TIBEf*ZGpx{fKMi=K9{}eNWpSSm)hs*9(u*mhvUb z&><)lB(Of z6&&Uxbe^eqH|=gCjZXLUFy4q~rP8J3m`vxIPr3m}{GqSkAFO*I&74+)wN5OBYh}1v zY*kwkPops9eG+Atb<$z>OGZQe$<5Jm+F~@$JF5+gt^d+Es!qh(HdcT3)dxFQOQkDe z{<)+6{P*^8q`%-=ELYX);}6)+lKoPV<%4Q)jcwRf7<#5~gi8 zPi`(RYFC%-+Ua3UEv2TGQMs2jp@ejy;X@)t#=%Ie)_TT!^{+dAQ8nc1bmo&#JGyVDG{HES)wlRO~bqRXx?XR<4 z-C{OF`j+#XR-^N-bot@kentCvaN@VU&sRqjp)aM&>&;fE-##7GPowbYOEmH7?I`dE z?IXc^)BSZ%anNjc%T~I1yP>|yT`7HP-k`r^`M3Kzfh#ce$NNPMKhPC=f1{T;7>}sj zjlI!eK8?Gvl0R?Iop`g6s`;u#nW&lH?fF_+m9hPDsvL}5HX85UHFmvtvXEip=H_P5 zUdD&V^V6f**_WHf;I@4i-@iYq=U4We#_6p$igEk$!=(t{eUJgd%OH4M-iGncoYh*L zy{q=#;niL$oa*m;t?L^4PrSFghdJ9rb(H>v30jedNJbTD6nh$qK-=_T8}vC1g89S` z-Fm?zwQU8JSeZ)ZRzFXxeB%p#@iM;*oRnqNd`maBV3BdtaOQbEcj?8Ige>{;yWHFG zbx6o>bXgA`JEoFgbrj8Pji9zL!3% zTE}bC;5kx;pFekQmpd*Q>1RNfld~Rco-KAx-p`L4lh*9AAmy^XIGiRA!;`mN=l*Co z7ji+#;n%khXTzt~=u&)(lpM=Fht(aasA<)WS?`w#wyPqUEUb>GRw+poA@5b0E$Q6Imh_S;7D==St|zw>l77W0b*J>9u_=-}tn zjOgZ&YcW&*EB@&?CX3XhuJx>P)cun~|2`Z_&rS|*@*fJQXr+&y^;4m2T-i%^)tW}J zpPpl{wpZ?~_u2ZZA5Q0qHPVller^1kK6YF`VVZeE{lw_k&aZ#_=CJWQe8M)*#*Ie( z>Q6@fzf+}0&*iP1Gn{xMN00030{{sLNTl2;+Z2$lu9kAs9 diff --git a/tests/extras/test_annotate_vcf.py b/tests/extras/test_annotate_vcf.py index d1b86d6f..da1a54ce 100644 --- a/tests/extras/test_annotate_vcf.py +++ b/tests/extras/test_annotate_vcf.py @@ -40,10 +40,17 @@ def compare_vcfs(actual_vcf_path: Path, expected_vcf_path: Path): method replaces a placeholder string with the real version, and otherwise performs a pairwise check for all lines in each VCF. """ - with gzip.open(actual_vcf_path, "rt") as out_vcf: + + # Handle both gzipped and uncompressed VCF files + def _open(path: Path): + if path.suffix == ".gz": + return gzip.open(path, "rt") + return path.open("r") + + with _open(actual_vcf_path) as out_vcf, _open(expected_vcf_path) as expected_output: out_vcf_lines = out_vcf.readlines() - with gzip.open(expected_vcf_path, "rt") as expected_output: expected_output_lines = expected_output.readlines() + for actual_line, expected_line in zip( out_vcf_lines, expected_output_lines, strict=False ): @@ -61,7 +68,7 @@ def test_annotate_vcf_grch38_noattrs( output_vcf = tmp_path / "test_vcf_output_grch38_noattrs.vcf.gz" output_vrs_pkl = tmp_path / "test_vcf_pkl_grch38_noattrs.pkl" expected_vcf_no_vrs_attrs = ( - TEST_DATA_DIR / "test_vcf_expected_output_no_vrs_attrs.vcf.gz" + TEST_DATA_DIR / "test_vcf_expected_output_no_vrs_attrs.vcf" ) # Test GRCh38 assembly, which was used for input_vcf and no vrs attributes @@ -78,7 +85,7 @@ def test_annotate_vcf_grch38_attrs( vcr_cassette.allow_playback_repeats = False output_vcf = tmp_path / "test_vcf_output_grch38_attrs.vcf.gz" output_vrs_pkl = tmp_path / "test_vcf_pkl_grch38_attrs.pkl" - expected_vcf = TEST_DATA_DIR / "test_vcf_expected_output.vcf.gz" + expected_vcf = TEST_DATA_DIR / "test_vcf_expected_output.vcf" # Test GRCh38 assembly, which was used for input_vcf and vrs attributes vcf_annotator.annotate( @@ -96,7 +103,7 @@ def test_annotate_vcf_grch38_attrs_altsonly( vcr_cassette.allow_playback_repeats = False output_vcf = tmp_path / "test_vcf_output_grch38_attrs_altsonly.vcf.gz" output_vrs_pkl = tmp_path / "test_vcf_pkl_grch38_attrs_altsonly.pkl" - expected_altsonly_vcf = TEST_DATA_DIR / "test_vcf_expected_altsonly_output.vcf.gz" + expected_altsonly_vcf = TEST_DATA_DIR / "test_vcf_expected_altsonly_output.vcf" # Test GRCh38 assembly with VRS computed for ALTs only, which was used for input_vcf and vrs attributes vcf_annotator.annotate( @@ -118,7 +125,7 @@ def test_annotate_vcf_grch37_attrs( vcr_cassette.allow_playback_repeats = False output_vcf = tmp_path / "test_vcf_output_grch37_attrs.vcf.gz" output_vrs_pkl = tmp_path / "test_vcf_pkl_grch37_attrs.pkl" - expected_vcf = TEST_DATA_DIR / "test_vcf_expected_output.vcf.gz" + expected_vcf = TEST_DATA_DIR / "test_vcf_expected_output.vcf" # Test GRCh37 assembly, which was not used for input_vcf vcf_annotator.annotate( @@ -130,7 +137,7 @@ def test_annotate_vcf_grch37_attrs( ) with gzip.open(output_vcf, "rt") as out_vcf: out_vcf_lines = out_vcf.readlines() - with gzip.open(expected_vcf, "rt") as expected_output: + with expected_vcf.open() as expected_output: expected_output_lines = expected_output.readlines() assert out_vcf_lines != expected_output_lines assert output_vrs_pkl.exists() @@ -161,7 +168,7 @@ def test_annotate_vcf_vcf_only( vcr_cassette.allow_playback_repeats = False output_vcf = tmp_path / "test_vcf_output_vcf_only.vcf.gz" output_vrs_pkl = tmp_path / "test_vcf_pkl_vcf_only.pkl" - expected_vcf = TEST_DATA_DIR / "test_vcf_expected_output.vcf.gz" + expected_vcf = TEST_DATA_DIR / "test_vcf_expected_output.vcf" # Test only VCF output vcf_annotator.annotate(input_vcf, output_vcf_path=output_vcf, vrs_attributes=True) @@ -238,9 +245,7 @@ def test_annotate_vcf_rle(vcf_annotator: VcfAnnotator, vcr_cassette): ) # Read the output VCF and verify RLE fields are present - with gzip.open(output_vcf, "rt") as vcf_out: - vcf = pysam.VariantFile(vcf_out) - + with pysam.VariantFile(str(output_vcf)) as vcf: # Verify the RLE-specific header fields were added assert "VRS_Lengths" in vcf.header.info assert "VRS_RepeatSubunitLengths" in vcf.header.info From c0042c35ca509c20f28ed000269cc2c817e1bef5 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 15:05:58 -0500 Subject: [PATCH 15/41] Include sequence value in output vcf if the length of that sequence is <= MAX_LITERAL_STATE_LENGTH, defaulted to 15 --- src/ga4gh/vrs/extras/annotator/vcf.py | 40 +++++++++++-------- .../test_vcf_expected_altsonly_output.vcf | 4 +- .../extras/data/test_vcf_expected_output.vcf | 14 +++---- 3 files changed, 33 insertions(+), 25 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index c51fdd6c..4319dd82 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -16,7 +16,7 @@ from ga4gh.vrs import VRS_VERSION, __version__ from ga4gh.vrs.dataproxy import _DataProxy from ga4gh.vrs.extras.translator import AlleleTranslator -from ga4gh.vrs.models import Allele, Range +from ga4gh.vrs.models import Allele, Range, sequenceString _logger = logging.getLogger(__name__) @@ -52,6 +52,19 @@ class FieldName(str, Enum): } ) +# Short State.sequence will be included in output VCF if <= this value, +# otherwise output will be emitted as the "." character. +MAX_LITERAL_STATE_LENGTH = 15 + + +def _sequence_value_for_info(sequence: str | sequenceString) -> str | None: + """Return a literal sequence suitable for INFO fields if it is short enough.""" + if not sequence: + return None + seq = getattr(sequence, "root", sequence) + seq_str = str(seq) + return seq_str if len(seq_str) <= MAX_LITERAL_STATE_LENGTH else None + def dump_alleles_to_pkl(alleles: list[Allele], output_pkl_path: Path) -> None: """Create pkl file of dictionary mapping VRS IDs to ingested alleles. @@ -394,24 +407,18 @@ def _get_vrs_object( # Common fields for all state types start = vrs_obj.location.start end = vrs_obj.location.end + state = vrs_obj.state # State-specific fields - state_type = vrs_obj.state.type - - if state_type == "LiteralSequenceExpression": - # For LSE, populate sequence in STATES - alt = ( - str(vrs_obj.state.sequence.root) - if vrs_obj.state.sequence - else None - ) - # TODO TODO Leave in the `sequence` when the length of it is less than 15 characters - elif state_type in ( + state_type = state.type + alt = _sequence_value_for_info(getattr(state, "sequence", None)) + + if state_type in ( "ReferenceLengthExpression", "LengthExpression", ): # For RLE and LE, populate length - length = vrs_obj.state.length + length = state.length if length is None: err_msg = f"{state_type} requires a non-empty length: {vcf_coords}" raise VcfAnnotatorError(err_msg) @@ -420,10 +427,11 @@ def _get_vrs_object( raise VcfAnnotatorError(err_msg) # For RLE only, also populate repeatSubunitLength if state_type == "ReferenceLengthExpression": - repeat_subunit_length = vrs_obj.state.repeatSubunitLength + repeat_subunit_length = state.repeatSubunitLength else: - err_msg = f"Unsupported state type '{state_type}' for VCF annotation: {vcf_coords}" - raise VcfAnnotatorError(err_msg) + if state_type != "LiteralSequenceExpression": + err_msg = f"Unsupported state type '{state_type}' for VCF annotation: {vcf_coords}" + raise VcfAnnotatorError(err_msg) vrs_field_data[FieldName.STARTS_FIELD].append(start) vrs_field_data[FieldName.ENDS_FIELD].append(end) diff --git a/tests/extras/data/test_vcf_expected_altsonly_output.vcf b/tests/extras/data/test_vcf_expected_altsonly_output.vcf index bb5890fd..e316feb1 100644 --- a/tests/extras/data/test_vcf_expected_altsonly_output.vcf +++ b/tests/extras/data/test_vcf_expected_altsonly_output.vcf @@ -237,8 +237,8 @@ ##INFO= #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663;VRS_Ends=82664;VRS_States=T;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 -chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284350;VRS_Ends=284366;VRS_States;VRS_Lengths=15;VRS_RepeatSubunitLengths=1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 -chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289464;VRS_Ends=289466;VRS_States=CACGCCTGTAATCCCA;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284350;VRS_Ends=284366;VRS_States=AAAAAAAAAAAAAAA;VRS_Lengths=15;VRS_RepeatSubunitLengths=1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289464;VRS_Ends=289466;VRS_States;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399;VRS_Ends=28946400;VRS_States=C;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490414;VRS_Ends=490416;VRS_States;VRS_Lengths=0;VRS_RepeatSubunitLengths=2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=.,54220023;VRS_Ends=.,54220024;VRS_States=,A;VRS_Lengths=.,.;VRS_RepeatSubunitLengths=.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 diff --git a/tests/extras/data/test_vcf_expected_output.vcf b/tests/extras/data/test_vcf_expected_output.vcf index 064c4f89..a1d5c151 100644 --- a/tests/extras/data/test_vcf_expected_output.vcf +++ b/tests/extras/data/test_vcf_expected_output.vcf @@ -236,11 +236,11 @@ ##INFO= ##INFO= #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 -chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.esmv8nARRRdSysDFuIErJxRAdUSVsWNE,ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663,82663;VRS_Ends=82664,82664;VRS_States=,T;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 -chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.xgtXGA3ZkV1WgMc6eD9l64fX27S_TScW,ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284349,284350;VRS_Ends=284351,284366;VRS_States=,;VRS_Lengths=2,15;VRS_RepeatSubunitLengths=2,1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 -chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.nqqTUy-a2gssemOmJb4CJv-HNuFAmGrO,ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289463,289464;VRS_Ends=289464,289466;VRS_States=,CACGCCTGTAATCCCA;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 -chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.yPr2pVvJeWHDHarhzAvOCb5Cn9UMF6a5,ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399,28946399;VRS_Ends=28946400,28946400;VRS_States=,C;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 -chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.aje4-hx7eihWndAwfhzNq_7CZV3bRMXf,ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490413,490414;VRS_Ends=490416,490416;VRS_States=,;VRS_Lengths=3,0;VRS_RepeatSubunitLengths=3,2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 -chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.LlmfhAC3gQlVQUwXWYiYjrn5V_K8vBz1,,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=54220023,.,54220023;VRS_Ends=54220024,.,54220024;VRS_States=,,A;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 +chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.esmv8nARRRdSysDFuIErJxRAdUSVsWNE,ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663,82663;VRS_Ends=82664,82664;VRS_States=C,T;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 +chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.xgtXGA3ZkV1WgMc6eD9l64fX27S_TScW,ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284349,284350;VRS_Ends=284351,284366;VRS_States=CA,AAAAAAAAAAAAAAA;VRS_Lengths=2,15;VRS_RepeatSubunitLengths=2,1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.nqqTUy-a2gssemOmJb4CJv-HNuFAmGrO,ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289463,289464;VRS_Ends=289464,289466;VRS_States=T,;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.yPr2pVvJeWHDHarhzAvOCb5Cn9UMF6a5,ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399,28946399;VRS_Ends=28946400,28946400;VRS_States=T,C;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 +chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.aje4-hx7eihWndAwfhzNq_7CZV3bRMXf,ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490413,490414;VRS_Ends=490416,490416;VRS_States=ACT,;VRS_Lengths=3,0;VRS_RepeatSubunitLengths=3,2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 +chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.LlmfhAC3gQlVQUwXWYiYjrn5V_K8vBz1,,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=54220023,.,54220023;VRS_Ends=54220024,.,54220024;VRS_States=G,,A;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 chr19 54220999 . A T 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Error=Reference mismatch at GRCh38:chr19 position 54220998-54220999 (input gave 'A' but correct ref is 'T') GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 -chr19 54221654 . T A,P 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.kea5G-J1teg0iHMbgUELy-4L9lbJkgoj,ga4gh:VA.Zzlc24htmBV1HZZzWYgPD2_GfMInkrZu,;VRS_Starts=54221653,54221653,.;VRS_Ends=54221654,54221654,.;VRS_States=,A,;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 +chr19 54221654 . T A,P 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.kea5G-J1teg0iHMbgUELy-4L9lbJkgoj,ga4gh:VA.Zzlc24htmBV1HZZzWYgPD2_GfMInkrZu,;VRS_Starts=54221653,54221653,.;VRS_Ends=54221654,54221654,.;VRS_States=T,A,;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 0/1:.:45:0,20,25:0,20,25:99 From 6df2ba231c1c8b181f20a4b1720fcacc7bfddc63 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 15:10:48 -0500 Subject: [PATCH 16/41] Remove commented blocks --- tests/extras/test_annotate_vcf.py | 91 ------------------------------- 1 file changed, 91 deletions(-) diff --git a/tests/extras/test_annotate_vcf.py b/tests/extras/test_annotate_vcf.py index da1a54ce..b908431b 100644 --- a/tests/extras/test_annotate_vcf.py +++ b/tests/extras/test_annotate_vcf.py @@ -307,94 +307,3 @@ def test_annotate_vcf_rle(vcf_annotator: VcfAnnotator, vcr_cassette): assert output_vrs_pkl.exists() assert vcr_cassette.all_played - - -""" -Test VCF RLEs - -# Deletion: -{ - "in": { - "variation_id": "1663061", - "name": "NM_001918.5(DBT):c.940-7del", - "assembly_version": "38", - "accession": "NC_000001.11", - "vrs_class": "Allele", - "range_copies": [], - "fmt": "spdi", - "source": "NC_000001.11:100210777:AA:A", - "precedence": "1", - "variation_type": "Deletion", - "subclass_type": "SimpleAllele", - "cytogenetic": "1p21.2", - "chr": "1", - "variant_length": "1", - "mappings": [] - }, - "out": { - "id": "ga4gh:VA.r0qW5Jn6m42VHlDb1aOFChTBBbS_7zh1", - "type": "Allele", - "digest": "r0qW5Jn6m42VHlDb1aOFChTBBbS_7zh1", - "location": { - "id": "ga4gh:SL.4uMvoRYb3sR90KCxTkXKfzQHQvFo8tz-", - "type": "SequenceLocation", - "digest": "4uMvoRYb3sR90KCxTkXKfzQHQvFo8tz-", - "sequenceReference": { - "type": "SequenceReference", - "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO" - }, - "start": 100210777, - "end": 100210779 - }, - "state": { - "type": "ReferenceLengthExpression", - "length": 1, - "sequence": "A", - "repeatSubunitLength": 1 - } - } -} - -# Repeat duplication -{ - "in": { - "variation_id": "3727769", - "name": "NM_001854.4(COL11A1):c.2292_2295dup (p.Gly766fs)", - "assembly_version": "38", - "accession": "NC_000001.11", - "vrs_class": "Allele", - "range_copies": [], - "fmt": "spdi", - "source": "NC_000001.11:102995988:CTTT:CTTTCTTT", - "precedence": "1", - "variation_type": "Duplication", - "subclass_type": "SimpleAllele", - "cytogenetic": "1p21.1", - "chr": "1", - "variant_length": "4", - "mappings": [] - }, - "out": { - "id": "ga4gh:VA.WXxaJ2ZsP_XfDma8a-nBi_VxMe9V20zJ", - "type": "Allele", - "digest": "WXxaJ2ZsP_XfDma8a-nBi_VxMe9V20zJ", - "location": { - "id": "ga4gh:SL.14ezn454AKxlhLHeeJbH3Dp7wJoQAml4", - "type": "SequenceLocation", - "digest": "14ezn454AKxlhLHeeJbH3Dp7wJoQAml4", - "sequenceReference": { - "type": "SequenceReference", - "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO" - }, - "start": 102995988, - "end": 102995992 - }, - "state": { - "type": "ReferenceLengthExpression", - "length": 8, - "sequence": "CTTTCTTT", - "repeatSubunitLength": 4 - } - } -} -""" From 460d6bb663cd82e2213dedbbe2499c738242c6a8 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 15:13:26 -0500 Subject: [PATCH 17/41] Update test name --- tests/test_vrs_normalize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index 7cab5f5d..ffc8218d 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -381,7 +381,7 @@ def test_normalize_allele(rest_dataproxy): @pytest.mark.vcr -def test_normalize_clinvar_rle_candidates(rest_dataproxy): +def test_normalize_clinvar_rle(rest_dataproxy): """Test normalization of ClinVar variants that should produce RLE. These test cases are pulled from ClinVar GRCh38 VCF. From b7fa124fc232363d392a715836aa5db9f65f6003 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 15:49:03 -0500 Subject: [PATCH 18/41] Add comments to cases in test_vrs_normalize.py --- tests/test_vrs_normalize.py | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index ffc8218d..5beb5637 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -2,13 +2,7 @@ from ga4gh.vrs import models, normalize -# >>> dp.get_sequence("refseq:NC_000019.10", 44908820, 44908830) -# |820 |825 | 830 -# ' G C G C C T G G C A ' -# |A| a1 -# - - +# Single nucleotide same-as-reference allele. allele_dict1 = { "location": { "end": 26090951, @@ -42,7 +36,7 @@ "type": "Allele", } - +# Ambiguous indefinite outer 2 bp deletion. Should become RLE. allele_dict2 = { "type": "Allele", "location": { @@ -57,7 +51,6 @@ "state": {"sequence": "", "type": "LiteralSequenceExpression"}, } - allele_dict2_normalized = { "type": "Allele", "location": { @@ -76,7 +69,7 @@ }, } - +# Ambiguous definite 2-4bp deletion. Cannot be converted to RLE. (as opposed to allele_dict2 which can) allele_dict3 = { "type": "Allele", "location": { @@ -91,7 +84,7 @@ "state": {"sequence": "", "type": "LiteralSequenceExpression"}, } - +# Tandem duplication of GT, normalizes to RLE. allele_dict4 = { "type": "Allele", "location": { @@ -125,6 +118,7 @@ }, } +# Insertion of multiple repeat subunits ("CAG") into an existing repeating region. allele_dict5 = { "location": { "end": 289464, @@ -158,7 +152,7 @@ }, } -# Another same-as-reference allele +# Another simple same-as-reference allele allele_dict6 = { "type": "Allele", "location": { From 576e4db181515abe9853030b63f55bdce18a4c0b Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 16:14:31 -0500 Subject: [PATCH 19/41] Add make target clean-cassettes --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 58acefd2..fcf3502b 100644 --- a/Makefile +++ b/Makefile @@ -123,6 +123,11 @@ cleaner: clean cleanest: cleaner rm -fr .eggs venv +#=> clean-cassettes: delete YAML VCR cassettes under tests/**/casette/ +.PHONY: clean-cassettes +clean-cassettes: + find ./tests -type f -path '*/cassettes/*.yaml' -print0 | ${XRM} + ## ## Copyright 2016 Source Code Committers From 70bd6e25f568d0200a04d593527e6150273ef7de Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 16:15:10 -0500 Subject: [PATCH 20/41] Minor tweak to all_played checks in vcf annotator tests to make re-recording easier --- tests/extras/test_annotate_vcf.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/extras/test_annotate_vcf.py b/tests/extras/test_annotate_vcf.py index b908431b..145e2bfc 100644 --- a/tests/extras/test_annotate_vcf.py +++ b/tests/extras/test_annotate_vcf.py @@ -75,7 +75,8 @@ def test_annotate_vcf_grch38_noattrs( vcf_annotator.annotate(input_vcf, output_vcf, output_pkl_path=output_vrs_pkl) compare_vcfs(output_vcf, expected_vcf_no_vrs_attrs) assert output_vrs_pkl.exists() - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played @pytest.mark.vcr @@ -93,7 +94,8 @@ def test_annotate_vcf_grch38_attrs( ) compare_vcfs(output_vcf, expected_vcf) assert output_vrs_pkl.exists() - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played @pytest.mark.vcr @@ -115,7 +117,8 @@ def test_annotate_vcf_grch38_attrs_altsonly( ) compare_vcfs(output_vcf, expected_altsonly_vcf) assert output_vrs_pkl.exists() - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played @pytest.mark.vcr @@ -141,7 +144,8 @@ def test_annotate_vcf_grch37_attrs( expected_output_lines = expected_output.readlines() assert out_vcf_lines != expected_output_lines assert output_vrs_pkl.exists() - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played @pytest.mark.vcr @@ -158,7 +162,8 @@ def test_annotate_vcf_pickle_only( ) assert output_vrs_pkl.exists() assert not output_vcf.exists() - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played @pytest.mark.vcr @@ -173,7 +178,8 @@ def test_annotate_vcf_vcf_only( # Test only VCF output vcf_annotator.annotate(input_vcf, output_vcf_path=output_vcf, vrs_attributes=True) compare_vcfs(output_vcf, expected_vcf) - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played assert not Path(output_vrs_pkl).exists() From adf5f73633b210767d0d2612b3df189c9391edf8 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 12 Nov 2025 16:27:24 -0500 Subject: [PATCH 21/41] Ignore VRS and Python version header values in VCF tests --- .../test_data_proxies[rest_dataproxy].yaml | 16 +- tests/cassettes/test_normalize_allele.yaml | 127 +- ...test_normalize_clinvar_rle_candidates.yaml | 1723 ----------------- .../cassettes/test_reference_allele_rle.yaml | 73 - tests/cassettes/test_vcrtest.yaml | 4 +- .../test_annotate_vcf_grch37_attrs.yaml | 180 +- .../test_annotate_vcf_grch38_attrs.yaml | 192 +- ...st_annotate_vcf_grch38_attrs_altsonly.yaml | 192 +- .../test_annotate_vcf_grch38_noattrs.yaml | 96 +- .../test_annotate_vcf_pickle_only.yaml | 192 +- .../cassettes/test_annotate_vcf_rle.yaml | 36 +- .../cassettes/test_annotate_vcf_vcf_only.yaml | 192 +- tests/extras/cassettes/test_from_beacon.yaml | 8 +- tests/extras/cassettes/test_from_gnomad.yaml | 184 +- tests/extras/cassettes/test_from_hgvs.yaml | 16 +- ...5del-complete genomic loss-expected0].yaml | 44 - ....32379315_32379819del-None-expected1].yaml | 44 - tests/extras/cassettes/test_from_spdi.yaml | 133 -- .../test_get_vrs_object_invalid_input.yaml | 20 +- ...NC_000007.14:g.55181220del-expected2].yaml | 34 +- ...g.55181230_55181231insGGCT-expected3].yaml | 38 +- ...NC_000007.14:g.55181320A>T-expected1].yaml | 24 +- ...NC_000013.11:g.32316467dup-expected5].yaml | 34 +- ....11:g.32331093_32331094dup-expected4].yaml | 78 +- ...s[NC_000013.11:g.32936732=-expected0].yaml | 12 +- ....10:g.289464_289465insCACA-expected8].yaml | 60 +- ...0019.10:g.289485_289500del-expected9].yaml | 56 +- ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 26 +- ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 56 +- .../cassettes/test_reference_allele_rle.yaml | 170 +- .../test_rle_round_trip_gnomad_spdi.yaml | 692 +++---- .../extras/cassettes/test_rle_seq_limit.yaml | 717 +------ .../test_to_hgvs_iri_ref_keyerror.yaml | 4 +- tests/extras/cassettes/test_to_spdi.yaml | 122 +- tests/extras/test_annotate_vcf.py | 25 +- 35 files changed, 1327 insertions(+), 4293 deletions(-) delete mode 100644 tests/cassettes/test_normalize_clinvar_rle_candidates.yaml delete mode 100644 tests/cassettes/test_reference_allele_rle.yaml delete mode 100644 tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.26440969_26443305del-complete genomic loss-expected0].yaml delete mode 100644 tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.32379315_32379819del-None-expected1].yaml delete mode 100644 tests/extras/cassettes/test_from_spdi.yaml diff --git a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml index 826db4f6..28fb95e9 100644 --- a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml +++ b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 response: @@ -27,7 +27,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -43,7 +43,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 response: @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -85,7 +85,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ response: @@ -99,7 +99,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -115,7 +115,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 response: @@ -129,7 +129,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index 6fdae133..8778fa2f 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,49 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: - Connection: - - close - Content-Length: - - '1035' - Content-Type: - - application/json - Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -447,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -477,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -507,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -537,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -567,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -597,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -627,7 +585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -657,7 +615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -687,48 +645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -758,7 +675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 07:04:34 GMT + - Wed, 12 Nov 2025 20:57:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_clinvar_rle_candidates.yaml b/tests/cassettes/test_normalize_clinvar_rle_candidates.yaml deleted file mode 100644 index 876c3d9c..00000000 --- a/tests/cassettes/test_normalize_clinvar_rle_candidates.yaml +++ /dev/null @@ -1,1723 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: - Connection: - - close - Content-Length: - - '4' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: - Connection: - - close - Content-Length: - - '3' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: - Connection: - - close - Content-Length: - - '8' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: - Connection: - - close - Content-Length: - - '3' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: - Connection: - - close - Content-Length: - - '4' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: - Connection: - - close - Content-Length: - - '8' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: - Connection: - - close - Content-Length: - - '28' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 07:22:10 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/cassettes/test_reference_allele_rle.yaml b/tests/cassettes/test_reference_allele_rle.yaml deleted file mode 100644 index e375b243..00000000 --- a/tests/cassettes/test_reference_allele_rle.yaml +++ /dev/null @@ -1,73 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Wed, 05 Nov 2025 21:47:12 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: - Connection: - - close - Content-Length: - - '2' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Wed, 05 Nov 2025 21:47:12 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/cassettes/test_vcrtest.yaml b/tests/cassettes/test_vcrtest.yaml index d1f66dae..f260a6f9 100644 --- a/tests/cassettes/test_vcrtest.yaml +++ b/tests/cassettes/test_vcrtest.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:25 GMT + - Wed, 12 Nov 2025 20:57:43 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml index 3efb5886..d35f6633 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 response: @@ -33,7 +33,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -49,7 +49,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 response: @@ -63,7 +63,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -79,7 +79,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX response: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -119,7 +119,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 response: @@ -133,7 +133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -149,7 +149,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 response: @@ -163,7 +163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -179,7 +179,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 response: @@ -193,7 +193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -209,7 +209,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 response: @@ -223,7 +223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -239,7 +239,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 response: @@ -253,7 +253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -269,7 +269,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 response: @@ -283,7 +283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -299,7 +299,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 response: @@ -313,7 +313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -329,7 +329,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 response: @@ -343,7 +343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -359,7 +359,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 response: @@ -373,7 +373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -389,7 +389,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 response: @@ -403,7 +403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -419,7 +419,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 response: @@ -433,7 +433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -449,7 +449,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 response: @@ -463,7 +463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -479,7 +479,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 response: @@ -493,7 +493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -509,7 +509,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 response: @@ -523,7 +523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -539,7 +539,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 response: @@ -553,7 +553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -569,7 +569,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 response: @@ -583,7 +583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -599,7 +599,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 response: @@ -613,7 +613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -629,7 +629,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 response: @@ -643,7 +643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -659,7 +659,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 response: @@ -673,7 +673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -689,7 +689,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 response: @@ -703,7 +703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -719,7 +719,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 response: @@ -733,7 +733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -749,7 +749,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 response: @@ -763,7 +763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -779,7 +779,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 response: @@ -793,7 +793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -809,7 +809,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 response: @@ -823,7 +823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -839,7 +839,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 response: @@ -853,7 +853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -869,7 +869,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 response: @@ -883,7 +883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -899,7 +899,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 response: @@ -913,7 +913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -929,7 +929,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 response: @@ -943,7 +943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -959,7 +959,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 response: @@ -973,7 +973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -989,7 +989,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 response: @@ -1003,7 +1003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1019,7 +1019,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 response: @@ -1033,7 +1033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1049,7 +1049,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 response: @@ -1063,7 +1063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1079,7 +1079,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 response: @@ -1093,7 +1093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1109,7 +1109,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 response: @@ -1123,7 +1123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1139,7 +1139,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 response: @@ -1153,7 +1153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1169,7 +1169,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 response: @@ -1183,7 +1183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1199,7 +1199,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 response: @@ -1213,7 +1213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1229,7 +1229,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 response: @@ -1243,7 +1243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1259,7 +1259,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 response: @@ -1273,7 +1273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1289,7 +1289,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 response: @@ -1303,7 +1303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1319,7 +1319,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 response: @@ -1333,7 +1333,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1349,7 +1349,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 response: @@ -1363,7 +1363,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml index 50330351..b5a21cbe 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 response: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -81,7 +81,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl response: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 response: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -153,7 +153,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 response: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,7 +183,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 response: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,7 +213,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 response: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 response: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -273,7 +273,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 response: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -303,7 +303,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 response: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -333,7 +333,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 response: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -363,7 +363,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 response: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -393,7 +393,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 response: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -423,7 +423,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 response: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -453,7 +453,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 response: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -483,7 +483,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 response: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -513,7 +513,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 response: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -543,7 +543,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 response: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -573,7 +573,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 response: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -603,7 +603,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 response: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -633,7 +633,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 response: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -663,7 +663,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 response: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -693,7 +693,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 response: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 response: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -753,7 +753,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 response: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -783,7 +783,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 response: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -813,7 +813,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 response: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -843,7 +843,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 response: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -873,7 +873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -903,7 +903,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -933,7 +933,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -963,7 +963,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -993,7 +993,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1023,7 +1023,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 response: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1053,7 +1053,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 response: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1083,7 +1083,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 response: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1113,7 +1113,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 response: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1143,7 +1143,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 response: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1173,7 +1173,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 response: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1203,7 +1203,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 response: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1233,7 +1233,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 response: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1263,7 +1263,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 response: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1293,7 +1293,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 response: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1323,7 +1323,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 response: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1353,7 +1353,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 response: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1383,7 +1383,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 response: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1413,7 +1413,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 response: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1443,7 +1443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 response: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml index 5fad9160..6bc89c67 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 response: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -81,7 +81,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl response: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 response: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -153,7 +153,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 response: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,7 +183,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 response: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,7 +213,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 response: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 response: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -273,7 +273,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 response: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -303,7 +303,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 response: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -333,7 +333,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 response: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -363,7 +363,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 response: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -393,7 +393,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 response: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -423,7 +423,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 response: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -453,7 +453,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 response: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -483,7 +483,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 response: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -513,7 +513,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 response: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -543,7 +543,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 response: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -573,7 +573,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 response: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -603,7 +603,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 response: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -633,7 +633,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 response: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -663,7 +663,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 response: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -693,7 +693,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 response: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 response: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -753,7 +753,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 response: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -783,7 +783,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 response: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -813,7 +813,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 response: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -843,7 +843,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 response: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -873,7 +873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -903,7 +903,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -933,7 +933,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -963,7 +963,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -993,7 +993,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1023,7 +1023,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 response: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1053,7 +1053,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 response: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1083,7 +1083,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 response: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1113,7 +1113,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 response: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1143,7 +1143,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 response: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1173,7 +1173,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 response: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1203,7 +1203,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 response: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1233,7 +1233,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 response: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1263,7 +1263,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 response: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1293,7 +1293,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 response: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1323,7 +1323,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 response: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1353,7 +1353,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 response: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1383,7 +1383,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 response: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1413,7 +1413,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 response: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1443,7 +1443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 response: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:20 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index 083ed145..ee59d150 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:34:19 GMT + - Wed, 12 Nov 2025 20:57:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml index 4a2e1af2..d7e32102 100644 --- a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 response: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -81,7 +81,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl response: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 response: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -153,7 +153,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 response: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,7 +183,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 response: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,7 +213,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 response: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 response: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -273,7 +273,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 response: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -303,7 +303,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 response: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -333,7 +333,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 response: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -363,7 +363,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 response: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -393,7 +393,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 response: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -423,7 +423,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 response: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -453,7 +453,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 response: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -483,7 +483,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 response: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -513,7 +513,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 response: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -543,7 +543,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 response: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -573,7 +573,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 response: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -603,7 +603,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 response: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -633,7 +633,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 response: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -663,7 +663,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 response: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -693,7 +693,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 response: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 response: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -753,7 +753,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 response: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -783,7 +783,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 response: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -813,7 +813,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 response: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -843,7 +843,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 response: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -873,7 +873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -903,7 +903,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -933,7 +933,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -963,7 +963,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -993,7 +993,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1023,7 +1023,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 response: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1053,7 +1053,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 response: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1083,7 +1083,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 response: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1113,7 +1113,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 response: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1143,7 +1143,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 response: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1173,7 +1173,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 response: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1203,7 +1203,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 response: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1233,7 +1233,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 response: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1263,7 +1263,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 response: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1293,7 +1293,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 response: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1323,7 +1323,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 response: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1353,7 +1353,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 response: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1383,7 +1383,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 response: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1413,7 +1413,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 response: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1443,7 +1443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 response: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index f5179888..2a1d0416 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 16 Oct 2025 14:55:06 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml index 159c8529..3b74553c 100644 --- a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 response: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -81,7 +81,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl response: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 response: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -153,7 +153,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 response: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,7 +183,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 response: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,7 +213,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 response: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 response: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -273,7 +273,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 response: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -303,7 +303,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 response: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -333,7 +333,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 response: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -363,7 +363,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 response: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -393,7 +393,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 response: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -423,7 +423,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 response: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -453,7 +453,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 response: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -483,7 +483,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 response: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -513,7 +513,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 response: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -543,7 +543,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 response: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -573,7 +573,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 response: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -603,7 +603,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 response: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -633,7 +633,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 response: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -663,7 +663,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 response: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -693,7 +693,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 response: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -723,7 +723,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 response: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -753,7 +753,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 response: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -783,7 +783,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 response: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -813,7 +813,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 response: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -843,7 +843,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 response: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -873,7 +873,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 response: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -903,7 +903,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 response: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -933,7 +933,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 response: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -963,7 +963,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 response: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -993,7 +993,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 response: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1023,7 +1023,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 response: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1053,7 +1053,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 response: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1083,7 +1083,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 response: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1113,7 +1113,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 response: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1143,7 +1143,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 response: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1173,7 +1173,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 response: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1203,7 +1203,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 response: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:21 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1233,7 +1233,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 response: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1263,7 +1263,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 response: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1293,7 +1293,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 response: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1323,7 +1323,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 response: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1353,7 +1353,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 response: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1383,7 +1383,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 response: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1413,7 +1413,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 response: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1443,7 +1443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 response: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_beacon.yaml b/tests/extras/cassettes/test_from_beacon.yaml index 2457e2f0..6e3f8ada 100644 --- a/tests/extras/cassettes/test_from_beacon.yaml +++ b/tests/extras/cassettes/test_from_beacon.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT response: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_gnomad.yaml b/tests/extras/cassettes/test_from_gnomad.yaml index a171d5fe..e19ca7ad 100644 --- a/tests/extras/cassettes/test_from_gnomad.yaml +++ b/tests/extras/cassettes/test_from_gnomad.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 response: @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 response: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 response: @@ -95,7 +95,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -111,7 +111,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 response: @@ -125,7 +125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -141,7 +141,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 response: @@ -155,7 +155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -171,7 +171,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 response: @@ -185,7 +185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -201,7 +201,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl response: @@ -227,7 +227,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -243,7 +243,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 response: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -273,7 +273,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct response: @@ -304,7 +304,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -320,7 +320,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 response: @@ -334,7 +334,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -350,7 +350,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT response: @@ -376,7 +376,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -392,7 +392,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 response: @@ -406,7 +406,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -422,7 +422,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 response: @@ -436,7 +436,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -452,7 +452,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 response: @@ -466,7 +466,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -482,7 +482,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 response: @@ -496,7 +496,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -512,7 +512,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 response: @@ -526,7 +526,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -542,7 +542,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 response: @@ -556,7 +556,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -572,7 +572,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 response: @@ -586,7 +586,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -602,7 +602,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 response: @@ -616,7 +616,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -632,7 +632,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 response: @@ -646,7 +646,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -662,7 +662,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 response: @@ -676,7 +676,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -692,7 +692,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 response: @@ -706,7 +706,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -722,7 +722,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 response: @@ -736,7 +736,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -752,7 +752,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 response: @@ -766,7 +766,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -782,7 +782,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 response: @@ -796,7 +796,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -812,7 +812,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 response: @@ -826,7 +826,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -842,7 +842,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 response: @@ -868,7 +868,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -884,7 +884,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 response: @@ -898,7 +898,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -914,7 +914,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 response: @@ -940,7 +940,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -956,7 +956,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 response: @@ -970,7 +970,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -986,7 +986,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 response: @@ -1000,7 +1000,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1016,7 +1016,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 response: @@ -1030,7 +1030,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1046,7 +1046,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 response: @@ -1060,7 +1060,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1076,7 +1076,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 response: @@ -1090,7 +1090,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1106,7 +1106,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 response: @@ -1120,7 +1120,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1136,7 +1136,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 response: @@ -1150,7 +1150,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1166,7 +1166,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 response: @@ -1180,7 +1180,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1196,7 +1196,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 response: @@ -1210,7 +1210,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1226,7 +1226,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 response: @@ -1240,7 +1240,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1256,7 +1256,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 response: @@ -1281,7 +1281,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1297,7 +1297,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 response: @@ -1311,7 +1311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1327,7 +1327,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul response: @@ -1352,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1368,7 +1368,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 response: @@ -1382,7 +1382,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1398,7 +1398,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 response: @@ -1412,7 +1412,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:48 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1428,7 +1428,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 response: @@ -1442,7 +1442,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1458,7 +1458,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 response: @@ -1472,7 +1472,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_hgvs.yaml b/tests/extras/cassettes/test_from_hgvs.yaml index c61c9655..610445d6 100644 --- a/tests/extras/cassettes/test_from_hgvs.yaml +++ b/tests/extras/cassettes/test_from_hgvs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 response: @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 response: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -98,7 +98,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:22:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -140,7 +140,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 response: @@ -154,7 +154,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:22:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.26440969_26443305del-complete genomic loss-expected0].yaml b/tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.26440969_26443305del-complete genomic loss-expected0].yaml deleted file mode 100644 index 5f0fb88f..00000000 --- a/tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.26440969_26443305del-complete genomic loss-expected0].yaml +++ /dev/null @@ -1,44 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Wed, 19 Mar 2025 20:51:18 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.32379315_32379819del-None-expected1].yaml b/tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.32379315_32379819del-None-expected1].yaml deleted file mode 100644 index 5ade7e22..00000000 --- a/tests/extras/cassettes/test_from_hgvs_cx[NC_000013.11:g.32379315_32379819del-None-expected1].yaml +++ /dev/null @@ -1,44 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5001/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Wed, 09 Apr 2025 19:40:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/extras/cassettes/test_from_spdi.yaml b/tests/extras/cassettes/test_from_spdi.yaml deleted file mode 100644 index 676da4a4..00000000 --- a/tests/extras/cassettes/test_from_spdi.yaml +++ /dev/null @@ -1,133 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: - Connection: - - close - Content-Length: - - '1035' - Content-Type: - - application/json - Date: - - Tue, 18 Mar 2025 14:14:55 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: - Connection: - - close - Content-Length: - - '1355' - Content-Type: - - application/json - Date: - - Tue, 18 Mar 2025 14:14:55 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Tue, 18 Mar 2025 14:14:55 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml index a1edba52..4fa144f6 100644 --- a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml +++ b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. response: @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -39,7 +39,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 response: @@ -64,7 +64,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -80,7 +80,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 response: @@ -94,7 +94,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -110,7 +110,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul response: @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -151,7 +151,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 response: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 10 Mar 2025 16:23:22 GMT + - Wed, 12 Nov 2025 20:57:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index 7a25af07..3504808d 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:51 GMT + - Wed, 12 Nov 2025 20:57:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:51 GMT + - Wed, 12 Nov 2025 20:57:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:51 GMT + - Wed, 12 Nov 2025 20:57:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:51 GMT + - Wed, 12 Nov 2025 20:57:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:51 GMT + - Wed, 12 Nov 2025 20:57:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,20 +183,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:50 GMT + - Wed, 12 Nov 2025 20:57:14 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D3363338DB1703500005B3B54D22940.1.1.m_7 + - 1D342B6CC88B7D8500003C5024C49B3B.1.1.m_7 NCBI-SID: - - 9D575C3A56F0B52F_725FSID + - 328CEEF476D404FE_AE3CSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=9D575C3A56F0B52F_725FSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:51 GMT + - ncbi_sid=328CEEF476D404FE_AE3CSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:14 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -204,7 +204,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -249,20 +249,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:50 GMT + - Wed, 12 Nov 2025 20:57:15 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500005E3E3986EE98.1.1.m_7 + - 1D342B6CC88B7D850000575025DC3B40.1.1.m_7 NCBI-SID: - - 81C6ECE1C93CC25E_3C41SID + - EC137E18D3E8ACFA_7DF0SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=81C6ECE1C93CC25E_3C41SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:51 GMT + - ncbi_sid=EC137E18D3E8ACFA_7DF0SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:15 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -270,7 +270,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index 3faf5c92..dc929789 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:52 GMT + - Wed, 12 Nov 2025 20:57:15 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:52 GMT + - Wed, 12 Nov 2025 20:57:15 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:52 GMT + - Wed, 12 Nov 2025 20:57:15 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,20 +123,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:52 GMT + - Wed, 12 Nov 2025 20:57:15 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D32708C99A7F4C500004C282C43D17F.1.1.m_7 + - 1D342B6CC88B7D850000465026EFF97D.1.1.m_7 NCBI-SID: - - 3C256B1A0C3404EC_9114SID + - 57BE89E3FB38E9D3_ABB3SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=3C256B1A0C3404EC_9114SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:52 GMT + - ncbi_sid=57BE89E3FB38E9D3_ABB3SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:15 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -189,20 +189,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:52 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D3363338DB1703500004E3B56252F11.1.1.m_7 + - 1D342B6CC88B7D850000345027D99F53.1.1.m_7 NCBI-SID: - - C1E5BE22BF4A04D9_D7BDSID + - 127C9E0619873199_20F8SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=C1E5BE22BF4A04D9_D7BDSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:52 GMT + - ncbi_sid=127C9E0619873199_20F8SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:15 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -255,20 +255,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:52 GMT + - Wed, 12 Nov 2025 20:57:15 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D32708C99A7F4C5000045282DCD5156.1.1.m_7 + - 1D342B6CC88B7D8500005450295976E8.1.1.m_7 NCBI-SID: - - 3C4BD15A5AC6DDC8_0093SID + - 162E1AE23C9A6F3F_925DSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=3C4BD15A5AC6DDC8_0093SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:53 GMT + - ncbi_sid=162E1AE23C9A6F3F_925DSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:16 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -276,7 +276,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index e20cecfa..e4e8db05 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Nov 2025 08:01:50 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:50 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -104,20 +104,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000443E36CDB98F.1.1.m_7 + - 1D342B6CC88B7D8500005E502261CBD0.1.1.m_7 NCBI-SID: - - 4AA4A0E02A1F8886_9826SID + - 43DEAD69CA3413B4_7A33SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=4AA4A0E02A1F8886_9826SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:50 GMT + - ncbi_sid=43DEAD69CA3413B4_7A33SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -170,20 +170,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:50 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000543E3778FD17.1.1.m_7 + - 1D339229EEE49AC5000079476E85729A.1.1.m_7 NCBI-SID: - - 0DAD2688A609A28F_8E6CSID + - 2873E6E1B970410A_C95FSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=0DAD2688A609A28F_8E6CSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:50 GMT + - ncbi_sid=2873E6E1B970410A_C95FSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:14 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index 3ea6fae0..b617b6b0 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,20 +183,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:55 GMT + - Wed, 12 Nov 2025 20:57:18 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000433E43EA7ECA.1.1.m_7 + - 1D342B6CC88B7D8500005C502FB61662.1.1.m_7 NCBI-SID: - - CEEDE3BEFFA7848C_E0A6SID + - 561B6C94F527F566_75ECSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=CEEDE3BEFFA7848C_E0A6SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:56 GMT + - ncbi_sid=561B6C94F527F566_75ECSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:18 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -204,7 +204,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -249,20 +249,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:55 GMT + - Wed, 12 Nov 2025 20:57:19 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000303E4513DDFF.1.1.m_7 + - 1D342B6CC88B7D850000375030976930.1.1.m_7 NCBI-SID: - - 069B1D1655F5544F_D14DSID + - 738A969119D76CD2_9FBESID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=069B1D1655F5544F_D14DSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:56 GMT + - ncbi_sid=738A969119D76CD2_9FBESID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:19 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -270,7 +270,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index 5ec99528..8d501824 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -574,20 +574,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:53 GMT + - Wed, 12 Nov 2025 20:57:16 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000273E3E46ECD4.1.1.m_7 + - 1D339229EEE49AC50000834770230E83.1.1.m_7 NCBI-SID: - - 7544EED11D261FC9_D756SID + - 0FA0D1F1D042909B_44BDSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=7544EED11D261FC9_D756SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:53 GMT + - ncbi_sid=0FA0D1F1D042909B_44BDSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:17 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -639,20 +639,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:54 GMT + - Wed, 12 Nov 2025 20:57:17 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000603E3F2F5AF5.1.1.m_7 + - 1D342B6CC88B7D85000042502C205EC3.1.1.m_7 NCBI-SID: - - 1E4B5D7AF0146C25_734FSID + - BE276C385341455A_0AD0SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=1E4B5D7AF0146C25_734FSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:54 GMT + - ncbi_sid=BE276C385341455A_0AD0SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:17 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -705,20 +705,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:55 GMT + - Wed, 12 Nov 2025 20:57:17 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000243E406F9558.1.1.m_7 + - 1D342B6CC88B7D85000028502CF9DD73.1.1.m_7 NCBI-SID: - - 74A920AB436B5E83_FCDBSID + - 6835E791BA4FF827_05BBSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=74A920AB436B5E83_FCDBSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:54 GMT + - ncbi_sid=6835E791BA4FF827_05BBSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:17 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -771,20 +771,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:55 GMT + - Wed, 12 Nov 2025 20:57:17 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000363E41F79539.1.1.m_7 + - 1D342B6CC88B7D8500002F502DF1A385.1.1.m_7 NCBI-SID: - - A9C765B1FDF11DC2_4B2DSID + - 609F072AF358E326_6A87SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=A9C765B1FDF11DC2_4B2DSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:55 GMT + - ncbi_sid=609F072AF358E326_6A87SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:18 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -792,7 +792,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index f668f68f..1c985d96 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:49 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -63,20 +63,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:49 GMT + - Wed, 12 Nov 2025 20:57:12 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D3363338DB170350000563B539FF6B7.1.1.m_7 + - 1D342B6CC88B7D8500003150214F7BF4.1.1.m_7 NCBI-SID: - - 69CF81D74CC72628_67D5SID + - BFA4AC67457979A1_16EASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=69CF81D74CC72628_67D5SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:49 GMT + - ncbi_sid=BFA4AC67457979A1_16EASID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index 04c62bdc..10c9d4e7 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,20 +213,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:09 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000383E6C25A76E.1.1.m_7 + - 1D342B6CC88B7D8500005A50462A4BBB.1.1.m_7 NCBI-SID: - - C0817E9D944BEA46_16E6SID + - 06F04B9009850EC7_55A0SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=C0817E9D944BEA46_16E6SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:10 GMT + - ncbi_sid=06F04B9009850EC7_55A0SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:33 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -234,7 +234,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -278,20 +278,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:10 GMT + - Wed, 12 Nov 2025 20:57:33 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500004C3E6DD761C7.1.1.m_7 + - 1D324FA150E172850000443B466A3E60.1.1.m_7 NCBI-SID: - - 011415198D35A012_A427SID + - DE6EB8487A083E45_4E73SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=011415198D35A012_A427SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:11 GMT + - ncbi_sid=DE6EB8487A083E45_4E73SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:33 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -299,7 +299,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -344,20 +344,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:11 GMT + - Wed, 12 Nov 2025 20:57:34 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500004C3E70466F4E.1.1.m_7 + - 1D324FA150E172850000233B475C7D1C.1.1.m_7 NCBI-SID: - - 03C9F38F0253A897_3DE6SID + - 22F1A033B3A37327_AB2ASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=03C9F38F0253A897_3DE6SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:11 GMT + - ncbi_sid=22F1A033B3A37327_AB2ASID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:34 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -365,7 +365,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -410,20 +410,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:11 GMT + - Wed, 12 Nov 2025 20:57:34 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000343E71971FCE.1.1.m_7 + - 1D324FA150E1728500003D3B4847E06F.1.1.m_7 NCBI-SID: - - A1756C88DF8BF43D_8DF3SID + - 6E689619619AA598_CD3DSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=A1756C88DF8BF43D_8DF3SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:12 GMT + - ncbi_sid=6E689619619AA598_CD3DSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:34 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -431,7 +431,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index 3772969a..d125948a 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -334,20 +334,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:12 GMT + - Wed, 12 Nov 2025 20:57:34 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500005E3E731F7CBA.1.1.m_7 + - 1D324FA150E172850000443B498B8962.1.1.m_7 NCBI-SID: - - F47D9F5E4E0F5C43_0B6ESID + - 7280EA964B191BD6_B48DSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=F47D9F5E4E0F5C43_0B6ESID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:12 GMT + - ncbi_sid=7280EA964B191BD6_B48DSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:35 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -355,7 +355,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -399,20 +399,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:13 GMT + - Wed, 12 Nov 2025 20:57:35 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000293E747A3F6D.1.1.m_7 + - 1D342B6CC88B7D8500005B5047D0FF80.1.1.m_7 NCBI-SID: - - FE7E65401D1F4450_9746SID + - 7B475FF83D151483_CEFFSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=FE7E65401D1F4450_9746SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:13 GMT + - ncbi_sid=7B475FF83D151483_CEFFSID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:35 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -420,7 +420,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -465,20 +465,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:13 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500002F3E76998399.1.1.m_7 + - 1D342B6CC88B7D8500004450484FAFD6.1.1.m_7 NCBI-SID: - - 4952510379E97593_DEACSID + - 340E5268088769E3_3EB6SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=4952510379E97593_DEACSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:13 GMT + - ncbi_sid=340E5268088769E3_3EB6SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:36 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -486,7 +486,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index 0f79ddce..3708a390 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -28,7 +28,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,20 +69,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:01:56 GMT + - Wed, 12 Nov 2025 20:57:19 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500003C3E46988037.1.1.m_7 + - 1D339229EEE49AC500004A4771B35E93.1.1.m_7 NCBI-SID: - - 15937E4C7F59CF0B_83BESID + - B4792ECA852E173F_791ASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=15937E4C7F59CF0B_83BESID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:01:57 GMT + - ncbi_sid=B4792ECA852E173F_791ASID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:19 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -129,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Nov 2025 08:01:57 GMT + - Wed, 12 Nov 2025 20:57:20 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:01:57 GMT + - Wed, 12 Nov 2025 20:57:20 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -200,20 +200,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:02 GMT + - Wed, 12 Nov 2025 20:57:25 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D500005C3E585BE79C.1.1.m_7 + - 1D342B6CC88B7D8500004A503F0C4249.1.1.m_7 NCBI-SID: - - 9D10BBBCB836C7D9_A4DASID + - 397ADAD06F82F3FC_FFF8SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=9D10BBBCB836C7D9_A4DASID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:02 GMT + - ncbi_sid=397ADAD06F82F3FC_FFF8SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index 35922555..6de62ea2 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -28,7 +28,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Nov 2025 08:02:03 GMT + - Wed, 12 Nov 2025 20:57:26 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,20 +69,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:02 GMT + - Wed, 12 Nov 2025 20:57:26 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000573E59DD1A44.1.1.m_7 + - 1D324FA150E1728500004D3B37F5FCE9.1.1.m_7 NCBI-SID: - - 4D46C1EC40ECB308_1BD4SID + - 43292DBA1DA975C7_8EC6SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=4D46C1EC40ECB308_1BD4SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:03 GMT + - ncbi_sid=43292DBA1DA975C7_8EC6SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -129,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Nov 2025 08:02:03 GMT + - Wed, 12 Nov 2025 20:57:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:02:03 GMT + - Wed, 12 Nov 2025 20:57:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -177,13 +177,13 @@ interactions: User-Agent: - python-requests/2.32.5 method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: string: !!binary | - H4sIAAAAAAAAABTEsQrCMBQF0N2vuKNCIk0VBQdBHBQKhRZ3eW2fNZi8lCQt+PfiGc65bp/Fvjga - szUnUx52+h/uwQckmixLwhQypWRnjyW4TCPrkTIP6N8kwk6hah7a2Q8jzd2LvHVfBc++4wiDdXWt - G7NRyJEk9dFOGQtFS5JRKkgQ3YfByoi2vqxuqx8AAAD//+ICAAAA//8DACrfWUyTAAAA + H4sIAAAAAAAAAAzEvQrCMBQG0L1P8Y0KrZAKGh0E6VBBDFSyy21Na6D5Ibkt+PZ6hnNRj5eQ4niS + O3EW9WFf/ZO4BReQKVrjM2JgytkuDmuYmSZTTcTmjeFD3psZeelHcnb+ooMzrjcJApt7ozqxLcGJ + fB6SjYyVkiXPqEu4p7oWrdaNbosfAAAA///iAgAAAP//AwAE2YHOhQAAAA== headers: Access-Control-Allow-Origin: - '*' @@ -200,20 +200,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:03 GMT + - Wed, 12 Nov 2025 20:57:32 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000383E5AE00C98.1.1.m_7 + - 1D339229EEE49AC50000534779485B76.1.1.m_7 NCBI-SID: - - 7733257D8B5B7E1E_DB94SID + - 4E93BE902DA726D0_4F62SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=7733257D8B5B7E1E_DB94SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:03 GMT + - ncbi_sid=4E93BE902DA726D0_4F62SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:32 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -221,7 +221,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '2' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -243,13 +243,13 @@ interactions: User-Agent: - python-requests/2.32.5 method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: string: !!binary | - H4sIAAAAAAAAAAzEvQrCMBQG0L1P8Y0KrZAKGh0E6VBBDFSyy21Na6D5Ibkt+PZ6hnNRj5eQ4niS - O3EW9WFf/ZO4BReQKVrjM2JgytkuDmuYmSZTTcTmjeFD3psZeelHcnb+ooMzrjcJApt7ozqxLcGJ - fB6SjYyVkiXPqEu4p7oWrdaNbosfAAAA///iAgAAAP//AwAE2YHOhQAAAA== + H4sIAAAAAAAAABTEsQrCMBQF0N2vuKNCIk0VBQdBHBQKhRZ3eW2fNZi8lCQt+PfiGc65bp/Fvjga + szUnUx52+h/uwQckmixLwhQypWRnjyW4TCPrkTIP6N8kwk6hah7a2Q8jzd2LvHVfBc++4wiDdXWt + G7NRyJEk9dFOGQtFS5JRKkgQ3YfByoi2vqxuqx8AAAD//+ICAAAA//8DACrfWUyTAAAA headers: Access-Control-Allow-Origin: - '*' @@ -266,20 +266,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:02:09 GMT + - Wed, 12 Nov 2025 20:57:32 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D340441F938F2D50000553E6AA9813F.1.1.m_7 + - 1D324FA150E1728500004F3B44C4D8D6.1.1.m_7 NCBI-SID: - - CE605A3CD98A7B9C_ED0BSID + - 1EB54D34AF739945_3613SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=CE605A3CD98A7B9C_ED0BSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:02:09 GMT + - ncbi_sid=1EB54D34AF739945_3613SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:33 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -287,7 +287,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '2' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index 644e2360..9e0653c7 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -1,45 +1,4 @@ interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Wed, 12 Nov 2025 06:13:58 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK - request: body: null headers: @@ -64,48 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:13:58 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Wed, 12 Nov 2025 06:13:58 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,89 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:13:58 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Wed, 12 Nov 2025 06:13:58 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Wed, 12 Nov 2025 06:13:58 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -247,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 06:13:58 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml index f812108d..7a42dd60 100644 --- a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml +++ b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 response: @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -50,7 +50,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 response: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -80,7 +80,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO response: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -121,7 +121,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 response: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -151,7 +151,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 response: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -181,7 +181,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 response: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -211,7 +211,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 response: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -241,7 +241,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 response: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -271,7 +271,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 response: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -301,7 +301,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 response: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -331,7 +331,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 response: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -361,7 +361,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 response: @@ -386,7 +386,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -402,7 +402,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 response: @@ -427,7 +427,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 response: @@ -457,7 +457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 response: @@ -499,7 +499,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:07 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -515,7 +515,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 response: @@ -529,7 +529,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -545,7 +545,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 response: @@ -571,7 +571,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 response: @@ -601,7 +601,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 response: @@ -631,7 +631,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 response: @@ -661,7 +661,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 response: @@ -691,7 +691,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 response: @@ -721,7 +721,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 response: @@ -751,7 +751,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 response: @@ -781,7 +781,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 response: @@ -811,7 +811,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 response: @@ -841,7 +841,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 response: @@ -871,7 +871,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 response: @@ -901,7 +901,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 response: @@ -931,7 +931,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 response: @@ -961,7 +961,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 response: @@ -991,7 +991,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 response: @@ -1021,7 +1021,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 response: @@ -1051,7 +1051,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 response: @@ -1081,7 +1081,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 response: @@ -1111,7 +1111,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 response: @@ -1141,7 +1141,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 response: @@ -1171,7 +1171,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 response: @@ -1201,7 +1201,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 response: @@ -1231,7 +1231,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 response: @@ -1261,7 +1261,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 response: @@ -1291,7 +1291,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 response: @@ -1321,7 +1321,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 response: @@ -1351,7 +1351,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 response: @@ -1381,7 +1381,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 response: @@ -1411,7 +1411,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 response: @@ -1441,7 +1441,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 response: @@ -1471,7 +1471,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1487,7 +1487,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 response: @@ -1501,7 +1501,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1517,7 +1517,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 response: @@ -1531,7 +1531,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1547,7 +1547,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 response: @@ -1561,7 +1561,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1577,7 +1577,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 response: @@ -1591,7 +1591,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1607,7 +1607,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 response: @@ -1621,7 +1621,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1637,7 +1637,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 response: @@ -1651,7 +1651,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1667,7 +1667,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 response: @@ -1681,7 +1681,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1697,7 +1697,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 response: @@ -1711,7 +1711,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1727,7 +1727,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 response: @@ -1741,7 +1741,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1757,7 +1757,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 response: @@ -1771,7 +1771,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1787,7 +1787,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 response: @@ -1801,7 +1801,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1817,7 +1817,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 response: @@ -1831,7 +1831,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1847,7 +1847,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 response: @@ -1861,7 +1861,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1877,7 +1877,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 response: @@ -1891,7 +1891,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1907,7 +1907,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 response: @@ -1921,7 +1921,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1937,7 +1937,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 response: @@ -1951,7 +1951,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1967,7 +1967,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 response: @@ -1981,7 +1981,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1997,7 +1997,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 response: @@ -2011,7 +2011,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2027,7 +2027,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 response: @@ -2041,7 +2041,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2057,7 +2057,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 response: @@ -2071,7 +2071,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2087,7 +2087,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 response: @@ -2101,7 +2101,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2117,7 +2117,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 response: @@ -2131,7 +2131,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2147,7 +2147,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 response: @@ -2161,7 +2161,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2177,7 +2177,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 response: @@ -2191,7 +2191,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2207,7 +2207,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 response: @@ -2221,7 +2221,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2237,7 +2237,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 response: @@ -2251,7 +2251,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2267,7 +2267,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 response: @@ -2281,7 +2281,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2297,7 +2297,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 response: @@ -2311,7 +2311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2327,7 +2327,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 response: @@ -2341,7 +2341,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2357,7 +2357,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 response: @@ -2371,7 +2371,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2387,7 +2387,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 response: @@ -2401,7 +2401,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2417,7 +2417,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 response: @@ -2431,7 +2431,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2447,7 +2447,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 response: @@ -2461,7 +2461,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2477,7 +2477,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 response: @@ -2491,7 +2491,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2507,7 +2507,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 response: @@ -2521,7 +2521,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2537,7 +2537,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 response: @@ -2551,7 +2551,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2567,7 +2567,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 response: @@ -2581,7 +2581,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2597,7 +2597,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 response: @@ -2611,7 +2611,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2627,7 +2627,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 response: @@ -2641,7 +2641,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2657,7 +2657,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 response: @@ -2671,7 +2671,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:11 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2687,7 +2687,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 response: @@ -2701,7 +2701,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2717,7 +2717,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 response: @@ -2731,7 +2731,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2747,7 +2747,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 response: @@ -2761,7 +2761,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2777,7 +2777,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 response: @@ -2791,7 +2791,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2807,7 +2807,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 response: @@ -2821,7 +2821,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2837,7 +2837,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 response: @@ -2851,7 +2851,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2867,7 +2867,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 response: @@ -2881,7 +2881,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2897,7 +2897,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 response: @@ -2923,7 +2923,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2939,7 +2939,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 response: @@ -2953,7 +2953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2969,7 +2969,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 response: @@ -2983,7 +2983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2999,7 +2999,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 response: @@ -3013,7 +3013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3029,7 +3029,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 response: @@ -3043,7 +3043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3059,7 +3059,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 response: @@ -3073,7 +3073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3089,7 +3089,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 response: @@ -3103,7 +3103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3119,7 +3119,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 response: @@ -3133,7 +3133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3149,7 +3149,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 response: @@ -3163,7 +3163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3179,7 +3179,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 response: @@ -3193,7 +3193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3209,7 +3209,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 response: @@ -3223,7 +3223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3239,7 +3239,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 response: @@ -3253,7 +3253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3269,7 +3269,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 response: @@ -3283,7 +3283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3299,7 +3299,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 response: @@ -3313,7 +3313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3329,7 +3329,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 response: @@ -3343,7 +3343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3359,7 +3359,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 response: @@ -3373,7 +3373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3389,7 +3389,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 response: @@ -3403,7 +3403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3419,7 +3419,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 response: @@ -3433,7 +3433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3449,7 +3449,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 response: @@ -3463,7 +3463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3479,7 +3479,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 response: @@ -3493,7 +3493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3509,7 +3509,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 response: @@ -3523,7 +3523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3539,7 +3539,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 response: @@ -3553,7 +3553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3569,7 +3569,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 response: @@ -3583,7 +3583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3599,7 +3599,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 response: @@ -3613,7 +3613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3629,7 +3629,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 response: @@ -3643,7 +3643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3659,7 +3659,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 response: @@ -3673,7 +3673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3689,7 +3689,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 response: @@ -3703,7 +3703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3719,7 +3719,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 response: @@ -3733,7 +3733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3749,7 +3749,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 response: @@ -3763,7 +3763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3779,7 +3779,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 response: @@ -3793,7 +3793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3809,7 +3809,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 response: @@ -3823,7 +3823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3839,7 +3839,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 response: @@ -3853,7 +3853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3869,7 +3869,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 response: @@ -3883,7 +3883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3899,7 +3899,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 response: @@ -3913,7 +3913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3929,7 +3929,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 response: @@ -3943,7 +3943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3959,7 +3959,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 response: @@ -3973,7 +3973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3989,7 +3989,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 response: @@ -4003,7 +4003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4019,7 +4019,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 response: @@ -4033,7 +4033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4049,7 +4049,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 response: @@ -4063,7 +4063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4079,7 +4079,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 response: @@ -4093,7 +4093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4109,7 +4109,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 response: @@ -4123,7 +4123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4139,7 +4139,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 response: @@ -4153,7 +4153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4169,7 +4169,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 response: @@ -4183,7 +4183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4199,7 +4199,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 response: @@ -4213,7 +4213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4229,7 +4229,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 response: @@ -4243,7 +4243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4259,7 +4259,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 response: @@ -4273,7 +4273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4289,7 +4289,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 response: @@ -4303,7 +4303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4319,7 +4319,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 response: @@ -4345,7 +4345,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4361,7 +4361,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 response: @@ -4375,7 +4375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4391,7 +4391,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 response: @@ -4405,7 +4405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4421,7 +4421,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 response: @@ -4435,7 +4435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4451,7 +4451,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 response: @@ -4465,7 +4465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4481,7 +4481,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 response: @@ -4495,7 +4495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4511,7 +4511,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 response: @@ -4525,7 +4525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4541,7 +4541,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 response: @@ -4555,7 +4555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4571,7 +4571,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 response: @@ -4585,7 +4585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4601,7 +4601,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 response: @@ -4615,7 +4615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4631,7 +4631,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 response: @@ -4645,7 +4645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4661,7 +4661,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 response: @@ -4675,7 +4675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4691,7 +4691,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 response: @@ -4705,7 +4705,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4721,7 +4721,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 response: @@ -4735,7 +4735,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4751,7 +4751,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 response: @@ -4765,7 +4765,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4781,7 +4781,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 response: @@ -4795,7 +4795,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4811,7 +4811,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 response: @@ -4825,7 +4825,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4841,7 +4841,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 response: @@ -4855,7 +4855,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4871,7 +4871,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 response: @@ -4885,7 +4885,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:12 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4901,7 +4901,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 response: @@ -4915,7 +4915,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4931,7 +4931,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 response: @@ -4945,7 +4945,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4961,7 +4961,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 response: @@ -4975,7 +4975,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4991,7 +4991,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 response: @@ -5005,7 +5005,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5021,7 +5021,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 response: @@ -5035,7 +5035,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5051,7 +5051,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 response: @@ -5065,7 +5065,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5081,7 +5081,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 response: @@ -5095,7 +5095,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5111,7 +5111,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 response: @@ -5125,7 +5125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5141,7 +5141,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 response: @@ -5155,7 +5155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5171,7 +5171,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 response: @@ -5185,7 +5185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5201,7 +5201,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 response: @@ -5215,7 +5215,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5231,7 +5231,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 response: @@ -5245,7 +5245,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5261,7 +5261,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 response: @@ -5275,7 +5275,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 22:51:13 GMT + - Wed, 12 Nov 2025 20:57:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index b4755821..263557e0 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -11,523 +11,19 @@ interactions: User-Agent: - python-requests/2.32.5 method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: - Connection: - - close - Content-Length: - - '52' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: - Connection: - - close - Content-Length: - - '1002' - Content-Type: - - application/json - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: - Connection: - - close - Content-Length: - - '52' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 response: body: - string: T + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT headers: Connection: - close Content-Length: - - '1' + - '52' Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -545,19 +41,19 @@ interactions: User-Agent: - python-requests/2.32.5 method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 response: body: - string: A + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT headers: Connection: - close Content-Length: - - '1' + - '52' Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1487,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1517,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1547,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1577,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1607,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1637,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1667,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1697,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1727,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1757,37 +1253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1828,85 +1294,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:03:39 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D3363338DB170350000493BC94910D1.1.1.m_7 - NCBI-SID: - - 1C343CDFB0EEC3C7_8965SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=1C343CDFB0EEC3C7_8965SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:03:39 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLE10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V - MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQK4QIAAAD//+ICAAAA//8DAOcxeKNbAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Tue, 11 Nov 2025 08:03:39 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D32708C99A7F4C500004028E484A923.1.1.m_7 + - 1D339229EEE49AC5000057477BF2C4DA.1.1.m_7 NCBI-SID: - - 05E3812A29098E49_F4FFSID + - EC163BECAFA98B2A_8913SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=05E3812A29098E49_F4FFSID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:03:40 GMT + - ncbi_sid=EC163BECAFA98B2A_8913SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:36 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -1959,20 +1360,20 @@ interactions: Content-Type: - text/plain Date: - - Tue, 11 Nov 2025 08:03:40 GMT + - Wed, 12 Nov 2025 20:57:36 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D32708C99A7F4C500002628E6427B74.1.1.m_7 + - 1D324FA150E172850000563B4CF1466C.1.1.m_7 NCBI-SID: - - CB12E2715FEAAC07_3789SID + - 57EF5AC700F362A0_4872SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=CB12E2715FEAAC07_3789SID; domain=.nih.gov; path=/; expires=Wed, 11 - Nov 2026 08:03:40 GMT + - ncbi_sid=57EF5AC700F362A0_4872SID; domain=.nih.gov; path=/; expires=Thu, 12 + Nov 2026 20:57:37 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -1980,7 +1381,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml index 64c46beb..07ea222c 100644 --- a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml +++ b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc response: @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 16:23:19 GMT + - Wed, 12 Nov 2025 20:57:37 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_to_spdi.yaml b/tests/extras/cassettes/test_to_spdi.yaml index 5c6dc6b1..2599cb32 100644 --- a/tests/extras/cassettes/test_to_spdi.yaml +++ b/tests/extras/cassettes/test_to_spdi.yaml @@ -9,121 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: - Connection: - - close - Content-Length: - - '1035' - Content-Type: - - application/json - Date: - - Wed, 16 Apr 2025 23:00:50 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: - Connection: - - close - Content-Length: - - '1035' - Content-Type: - - application/json - Date: - - Wed, 16 Apr 2025 23:00:50 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Wed, 16 Apr 2025 23:00:50 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 response: @@ -149,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Apr 2025 23:00:50 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 response: @@ -179,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 16 Apr 2025 23:00:50 GMT + - Wed, 12 Nov 2025 20:57:13 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/test_annotate_vcf.py b/tests/extras/test_annotate_vcf.py index 145e2bfc..b3ed7155 100644 --- a/tests/extras/test_annotate_vcf.py +++ b/tests/extras/test_annotate_vcf.py @@ -9,7 +9,6 @@ import pysam import pytest -from ga4gh.vrs import VRS_VERSION, __version__ from ga4gh.vrs.dataproxy import DataProxyValidationError, SeqRepoRESTDataProxy from ga4gh.vrs.extras.annotator.vcf import VcfAnnotator, VcfAnnotatorError @@ -36,10 +35,23 @@ def input_vcf(): def compare_vcfs(actual_vcf_path: Path, expected_vcf_path: Path): - """VRS-Python version annotation would be annoying to manually update. This helper - method replaces a placeholder string with the real version, and otherwise performs - a pairwise check for all lines in each VCF. + """Normalize version fields that change per build and compare the remaining content + of two VCF files line-by-line. """ + version_section_pattern = re.compile( + r"\[VRS version=[^;\]]+;VRS-Python version=[^\]]+\]" + ) + + def _mask_version_fields(line: str) -> str: + """Replace the bracketed version section with a stable placeholder.""" + if not line.startswith("##INFO=;VRS-Python version=]", line + ) # Handle both gzipped and uncompressed VCF files def _open(path: Path): @@ -54,9 +66,8 @@ def _open(path: Path): for actual_line, expected_line in zip( out_vcf_lines, expected_output_lines, strict=False ): - if actual_line.startswith("##INFO= Date: Thu, 13 Nov 2025 11:29:18 -0500 Subject: [PATCH 22/41] Add missing cassette --- .../cassettes/test_normalize_clinvar_rle.yaml | 1682 +++++++++++++++++ 1 file changed, 1682 insertions(+) create mode 100644 tests/cassettes/test_normalize_clinvar_rle.yaml diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml new file mode 100644 index 00000000..3459858d --- /dev/null +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -0,0 +1,1682 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: + Connection: + - close + Content-Length: + - '4' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: + Connection: + - close + Content-Length: + - '3' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: + Connection: + - close + Content-Length: + - '8' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: + Connection: + - close + Content-Length: + - '3' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: + Connection: + - close + Content-Length: + - '4' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: + Connection: + - close + Content-Length: + - '8' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: + Connection: + - close + Content-Length: + - '0' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: + Connection: + - close + Content-Length: + - '1' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: + Connection: + - close + Content-Length: + - '28' + Content-Type: + - text/plain; charset=utf-8 + Date: + - Wed, 12 Nov 2025 20:57:44 GMT + Server: + - Werkzeug/2.2.3 Python/3.10.12 + status: + code: 200 + message: OK +version: 1 From 9a65b82d8d0bfacfa28ccc7573886100934b9393 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 13 Nov 2025 11:44:34 -0500 Subject: [PATCH 23/41] Don't fail test when vcr is being rewritten. Refresh cassettes --- .../test_data_proxies[rest_dataproxy].yaml | 8 +- tests/cassettes/test_normalize_allele.yaml | 44 +-- .../cassettes/test_normalize_clinvar_rle.yaml | 112 +++--- tests/cassettes/test_vcrtest.yaml | 2 +- .../test_annotate_vcf_grch37_attrs.yaml | 90 ++--- .../test_annotate_vcf_grch38_attrs.yaml | 96 ++--- ...st_annotate_vcf_grch38_attrs_altsonly.yaml | 96 ++--- .../test_annotate_vcf_grch38_noattrs.yaml | 96 ++--- .../test_annotate_vcf_pickle_only.yaml | 96 ++--- .../cassettes/test_annotate_vcf_rle.yaml | 36 +- .../cassettes/test_annotate_vcf_vcf_only.yaml | 96 ++--- tests/extras/cassettes/test_from_beacon.yaml | 4 +- tests/extras/cassettes/test_from_gnomad.yaml | 92 ++--- tests/extras/cassettes/test_from_hgvs.yaml | 8 +- .../test_get_vrs_object_invalid_input.yaml | 10 +- ...NC_000007.14:g.55181220del-expected2].yaml | 30 +- ...g.55181230_55181231insGGCT-expected3].yaml | 36 +- ...NC_000007.14:g.55181320A>T-expected1].yaml | 24 +- ...NC_000013.11:g.32316467dup-expected5].yaml | 32 +- ....11:g.32331093_32331094dup-expected4].yaml | 136 ++++--- ...s[NC_000013.11:g.32936732=-expected0].yaml | 12 +- ....10:g.289464_289465insCACA-expected8].yaml | 52 +-- ...0019.10:g.289485_289500del-expected9].yaml | 52 +-- ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 28 +- ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 36 +- .../cassettes/test_reference_allele_rle.yaml | 6 +- .../test_rle_round_trip_gnomad_spdi.yaml | 346 +++++++++--------- .../extras/cassettes/test_rle_seq_limit.yaml | 106 +++--- .../test_to_hgvs_iri_ref_keyerror.yaml | 2 +- tests/extras/cassettes/test_to_spdi.yaml | 4 +- tests/extras/test_annotate_vcf.py | 3 +- 31 files changed, 923 insertions(+), 868 deletions(-) diff --git a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml index 28fb95e9..fa0e7dde 100644 --- a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml +++ b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml @@ -27,7 +27,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index 8778fa2f..9782123f 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -585,7 +585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -615,7 +615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -645,7 +645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -675,7 +675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml index 3459858d..03c36235 100644 --- a/tests/cassettes/test_normalize_clinvar_rle.yaml +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -563,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -593,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -623,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -653,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -683,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -713,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -743,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -773,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -803,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -833,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -863,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -893,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -923,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -953,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -983,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1013,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1073,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1103,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1133,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1163,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1193,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1223,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1253,7 +1253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1283,7 +1283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1313,7 +1313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1343,7 +1343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1373,7 +1373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1403,7 +1403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1433,7 +1433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1463,7 +1463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1493,7 +1493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1523,7 +1523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1553,7 +1553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1583,7 +1583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1613,7 +1613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1643,7 +1643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1673,7 +1673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:44 GMT + - Thu, 13 Nov 2025 16:35:23 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_vcrtest.yaml b/tests/cassettes/test_vcrtest.yaml index f260a6f9..bf38d399 100644 --- a/tests/cassettes/test_vcrtest.yaml +++ b/tests/cassettes/test_vcrtest.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:43 GMT + - Thu, 13 Nov 2025 16:35:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml index d35f6633..dcbe0e0d 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml @@ -33,7 +33,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -63,7 +63,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -133,7 +133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -163,7 +163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -193,7 +193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -223,7 +223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -253,7 +253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -283,7 +283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -313,7 +313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -343,7 +343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -373,7 +373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -403,7 +403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -433,7 +433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -463,7 +463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -493,7 +493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -523,7 +523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -553,7 +553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -583,7 +583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -613,7 +613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -643,7 +643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -673,7 +673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -703,7 +703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -733,7 +733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -763,7 +763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -793,7 +793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -823,7 +823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -853,7 +853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -883,7 +883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -913,7 +913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -943,7 +943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -973,7 +973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1003,7 +1003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1033,7 +1033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1063,7 +1063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1093,7 +1093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1123,7 +1123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1153,7 +1153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1183,7 +1183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1213,7 +1213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1243,7 +1243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1273,7 +1273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1303,7 +1303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1333,7 +1333,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1363,7 +1363,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml index b5a21cbe..5127ceaf 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml index 6bc89c67..d38de872 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:17 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index ee59d150..e90a22b6 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:38 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml index d7e32102..e5648c7f 100644 --- a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:39 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index 2a1d0416..2ade1a13 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml index 3b74553c..17481857 100644 --- a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:18 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_beacon.yaml b/tests/extras/cassettes/test_from_beacon.yaml index 6e3f8ada..6b47cb8b 100644 --- a/tests/extras/cassettes/test_from_beacon.yaml +++ b/tests/extras/cassettes/test_from_beacon.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_gnomad.yaml b/tests/extras/cassettes/test_from_gnomad.yaml index e19ca7ad..8e8b58c2 100644 --- a/tests/extras/cassettes/test_from_gnomad.yaml +++ b/tests/extras/cassettes/test_from_gnomad.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -95,7 +95,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -125,7 +125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -155,7 +155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -185,7 +185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -304,7 +304,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -334,7 +334,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -376,7 +376,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -406,7 +406,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -436,7 +436,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -466,7 +466,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -496,7 +496,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -526,7 +526,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -556,7 +556,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -586,7 +586,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -616,7 +616,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -646,7 +646,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -676,7 +676,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -706,7 +706,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -736,7 +736,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -766,7 +766,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -796,7 +796,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -826,7 +826,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -868,7 +868,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -898,7 +898,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -940,7 +940,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -970,7 +970,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1000,7 +1000,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1030,7 +1030,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1060,7 +1060,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1090,7 +1090,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1120,7 +1120,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1150,7 +1150,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1180,7 +1180,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1210,7 +1210,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1240,7 +1240,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1281,7 +1281,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1311,7 +1311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1352,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1382,7 +1382,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1412,7 +1412,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1442,7 +1442,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1472,7 +1472,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_hgvs.yaml b/tests/extras/cassettes/test_from_hgvs.yaml index 610445d6..0c164c0a 100644 --- a/tests/extras/cassettes/test_from_hgvs.yaml +++ b/tests/extras/cassettes/test_from_hgvs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -154,7 +154,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml index 4fa144f6..2517a339 100644 --- a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml +++ b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -94,7 +94,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:40 GMT + - Thu, 13 Nov 2025 16:35:19 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index 3504808d..bbba0dc9 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:14 GMT + - Thu, 13 Nov 2025 16:34:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:14 GMT + - Thu, 13 Nov 2025 16:34:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:14 GMT + - Thu, 13 Nov 2025 16:34:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:14 GMT + - Thu, 13 Nov 2025 16:34:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:14 GMT + - Thu, 13 Nov 2025 16:34:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,20 +183,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:14 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500003C5024C49B3B.1.1.m_7 + - 1D331AE54D4115450000314799E37087.1.1.m_7 NCBI-SID: - - 328CEEF476D404FE_AE3CSID + - FA2D9F5A972DFBE4_F35ESID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=328CEEF476D404FE_AE3CSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:14 GMT + - ncbi_sid=FA2D9F5A972DFBE4_F35ESID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -249,20 +249,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:15 GMT + - Thu, 13 Nov 2025 16:34:53 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D850000575025DC3B40.1.1.m_7 + - 1D331AE54D411545000055479A7DB2BD.1.1.m_7 NCBI-SID: - - EC137E18D3E8ACFA_7DF0SID + - 04EFDC103B4478E3_B31CSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=EC137E18D3E8ACFA_7DF0SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:15 GMT + - ncbi_sid=04EFDC103B4478E3_B31CSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index dc929789..ac0f7111 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:15 GMT + - Thu, 13 Nov 2025 16:34:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:15 GMT + - Thu, 13 Nov 2025 16:34:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:15 GMT + - Thu, 13 Nov 2025 16:34:53 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -123,20 +123,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:15 GMT + - Thu, 13 Nov 2025 16:34:52 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D850000465026EFF97D.1.1.m_7 + - 1D321DE74BE703950000634E41E706AD.1.1.m_7 NCBI-SID: - - 57BE89E3FB38E9D3_ABB3SID + - 131002C386962811_AEECSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=57BE89E3FB38E9D3_ABB3SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:15 GMT + - ncbi_sid=131002C386962811_AEECSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -189,20 +189,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:53 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D850000345027D99F53.1.1.m_7 + - 1D321DE74BE703950000584E42B39F47.1.1.m_7 NCBI-SID: - - 127C9E0619873199_20F8SID + - AF0459F6D19A8458_575DSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=127C9E0619873199_20F8SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:15 GMT + - ncbi_sid=AF0459F6D19A8458_575DSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -255,20 +255,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:15 GMT + - Thu, 13 Nov 2025 16:34:53 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500005450295976E8.1.1.m_7 + - 1D321DE74BE7039500004E4E4351D7E3.1.1.m_7 NCBI-SID: - - 162E1AE23C9A6F3F_925DSID + - DE8CF346CC0A7C16_224ESID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=162E1AE23C9A6F3F_925DSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:16 GMT + - ncbi_sid=DE8CF346CC0A7C16_224ESID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index e4e8db05..eb9f77b4 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -104,20 +104,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500005E502261CBD0.1.1.m_7 + - 1D331AE54D4115450000484798C2633F.1.1.m_7 NCBI-SID: - - 43DEAD69CA3413B4_7A33SID + - F562994DD8EDC05F_9214SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=43DEAD69CA3413B4_7A33SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:13 GMT + - ncbi_sid=F562994DD8EDC05F_9214SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -170,20 +170,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D339229EEE49AC5000079476E85729A.1.1.m_7 + - 1D340D3D859482150000635164AFF077.1.1.m_7 NCBI-SID: - - 2873E6E1B970410A_C95FSID + - ADD0E16FDC632516_3E27SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=2873E6E1B970410A_C95FSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:14 GMT + - ncbi_sid=ADD0E16FDC632516_3E27SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index b617b6b0..2e1d7748 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:18 GMT + - Thu, 13 Nov 2025 16:34:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:18 GMT + - Thu, 13 Nov 2025 16:34:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:18 GMT + - Thu, 13 Nov 2025 16:34:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:18 GMT + - Thu, 13 Nov 2025 16:34:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:18 GMT + - Thu, 13 Nov 2025 16:34:57 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -183,20 +183,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:18 GMT + - Thu, 13 Nov 2025 16:34:56 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500005C502FB61662.1.1.m_7 + - 1D321DE74BE703950000364E48992207.1.1.m_7 NCBI-SID: - - 561B6C94F527F566_75ECSID + - B9DBC13B1D357E0E_2649SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=561B6C94F527F566_75ECSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:18 GMT + - ncbi_sid=B9DBC13B1D357E0E_2649SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:57 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -204,7 +204,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -249,20 +249,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:19 GMT + - Thu, 13 Nov 2025 16:34:57 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D850000375030976930.1.1.m_7 + - 1D340D3D8594821500002A5168FA75A8.1.1.m_7 NCBI-SID: - - 738A969119D76CD2_9FBESID + - D507430C67717784_6175SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=738A969119D76CD2_9FBESID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:19 GMT + - ncbi_sid=D507430C67717784_6175SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:57 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index 8d501824..590df10b 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -574,20 +574,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:16 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D339229EEE49AC50000834770230E83.1.1.m_7 + - 1D340D3D8594821500005E5166E3B626.1.1.m_7 NCBI-SID: - - 0FA0D1F1D042909B_44BDSID + - BC8832B1821E1D7C_EA4ASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=0FA0D1F1D042909B_44BDSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:17 GMT + - ncbi_sid=BC8832B1821E1D7C_EA4ASID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -595,7 +595,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -639,20 +639,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:17 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D85000042502C205EC3.1.1.m_7 + - 1D331AE54D411545000045479D795EAE.1.1.m_7 NCBI-SID: - - BE276C385341455A_0AD0SID + - CB392AFFDB2F4674_0624SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=BE276C385341455A_0AD0SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:17 GMT + - ncbi_sid=CB392AFFDB2F4674_0624SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -660,7 +660,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '0' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -705,20 +705,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:17 GMT + - Thu, 13 Nov 2025 16:34:54 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D85000028502CF9DD73.1.1.m_7 + - 1D321DE74BE7039500003B4E45970DC9.1.1.m_7 NCBI-SID: - - 6835E791BA4FF827_05BBSID + - 66E37AB860B8C332_564FSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=6835E791BA4FF827_05BBSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:17 GMT + - ncbi_sid=66E37AB860B8C332_564FSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -736,6 +736,60 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAKpWSi0qyi9SslJyDPBUKEosSVXIyczNLFFIrUhOTU1JTVHSUUosyNTNTq0EqjGz + 1DM0N9azNNczNLIAyiTnl+aVAMVNgGywNiDbWKmWCwAAAP//AwASzIfrVgAAAA== + headers: + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining,Retry-After + Connection: + - Keep-Alive + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - application/json + Date: + - Thu, 13 Nov 2025 16:34:54 GMT + Keep-Alive: + - timeout=4, max=40 + Referrer-Policy: + - origin-when-cross-origin + Retry-After: + - '2' + Server: + - Finatra + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + content-length: + - '103' + status: + code: 429 + message: Too Many Requests - request: body: null headers: @@ -771,20 +825,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:17 GMT + - Thu, 13 Nov 2025 16:34:56 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500002F502DF1A385.1.1.m_7 + - 1D340D3D859482150000295168561C3D.1.1.m_7 NCBI-SID: - - 609F072AF358E326_6A87SID + - 3AB35BC67928A019_000ASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=609F072AF358E326_6A87SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:18 GMT + - ncbi_sid=3AB35BC67928A019_000ASID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -792,7 +846,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '2' X-UA-Compatible: - IE=Edge X-XSS-Protection: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index 1c985d96..cf37b1ed 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -63,20 +63,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:12 GMT + - Thu, 13 Nov 2025 16:34:50 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500003150214F7BF4.1.1.m_7 + - 1D340D3D8594821500002F5163717669.1.1.m_7 NCBI-SID: - - BFA4AC67457979A1_16EASID + - C263B4A3A9447EAA_25ABSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=BFA4AC67457979A1_16EASID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:13 GMT + - ncbi_sid=C263B4A3A9447EAA_25ABSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index 10c9d4e7..4e5d4eb4 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -213,20 +213,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500005A50462A4BBB.1.1.m_7 + - 1D331AE54D41154500004447B5527C07.1.1.m_7 NCBI-SID: - - 06F04B9009850EC7_55A0SID + - 859A1EBDB6CB5B53_34D5SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=06F04B9009850EC7_55A0SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:33 GMT + - ncbi_sid=859A1EBDB6CB5B53_34D5SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:10 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -278,20 +278,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:33 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E172850000443B466A3E60.1.1.m_7 + - 1D331AE54D41154500003747B5EE4926.1.1.m_7 NCBI-SID: - - DE6EB8487A083E45_4E73SID + - 1DB89A0683D19F8F_EA95SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=DE6EB8487A083E45_4E73SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:33 GMT + - ncbi_sid=1DB89A0683D19F8F_EA95SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:11 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -344,20 +344,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:34 GMT + - Thu, 13 Nov 2025 16:35:11 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E172850000233B475C7D1C.1.1.m_7 + - 1D340D3D8594821500003D517385F071.1.1.m_7 NCBI-SID: - - 22F1A033B3A37327_AB2ASID + - 48A0C90787916B15_5842SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=22F1A033B3A37327_AB2ASID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:34 GMT + - ncbi_sid=48A0C90787916B15_5842SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:11 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -410,20 +410,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:34 GMT + - Thu, 13 Nov 2025 16:35:11 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E1728500003D3B4847E06F.1.1.m_7 + - 1D340D3D859482150000545173E6ED0E.1.1.m_7 NCBI-SID: - - 6E689619619AA598_CD3DSID + - A499FA9B70233EC8_407ESID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=6E689619619AA598_CD3DSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:34 GMT + - ncbi_sid=A499FA9B70233EC8_407ESID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:12 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index d125948a..617ae7c7 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -334,20 +334,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:34 GMT + - Thu, 13 Nov 2025 16:35:12 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E172850000443B498B8962.1.1.m_7 + - 1D321DE74BE703950000454E633A4376.1.1.m_7 NCBI-SID: - - 7280EA964B191BD6_B48DSID + - E4E0C334D730FF68_42E3SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=7280EA964B191BD6_B48DSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:35 GMT + - ncbi_sid=E4E0C334D730FF68_42E3SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:12 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -355,7 +355,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -399,20 +399,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:35 GMT + - Thu, 13 Nov 2025 16:35:13 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500005B5047D0FF80.1.1.m_7 + - 1D331AE54D41154500003047B8CAE7DA.1.1.m_7 NCBI-SID: - - 7B475FF83D151483_CEFFSID + - F356D886FE60C574_F8C2SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=7B475FF83D151483_CEFFSID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:35 GMT + - ncbi_sid=F356D886FE60C574_F8C2SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -465,20 +465,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:13 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500004450484FAFD6.1.1.m_7 + - 1D331AE54D41154500006147B9389CCF.1.1.m_7 NCBI-SID: - - 340E5268088769E3_3EB6SID + - A0ECA66A1FC8DE6A_FB4CSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=340E5268088769E3_3EB6SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:36 GMT + - ncbi_sid=A0ECA66A1FC8DE6A_FB4CSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index 3708a390..c5a7cc85 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -28,7 +28,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:19 GMT + - Thu, 13 Nov 2025 16:34:58 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,20 +69,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:19 GMT + - Thu, 13 Nov 2025 16:34:58 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D339229EEE49AC500004A4771B35E93.1.1.m_7 + - 1D321DE74BE7039500005A4E49D79D93.1.1.m_7 NCBI-SID: - - B4792ECA852E173F_791ASID + - EBA1C02DEA4C21A5_E572SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=B4792ECA852E173F_791ASID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:19 GMT + - ncbi_sid=EBA1C02DEA4C21A5_E572SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:34:58 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -90,7 +90,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '0' + - '1' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -129,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:20 GMT + - Thu, 13 Nov 2025 16:34:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:20 GMT + - Thu, 13 Nov 2025 16:34:59 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -200,20 +200,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:25 GMT + - Thu, 13 Nov 2025 16:35:03 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D342B6CC88B7D8500004A503F0C4249.1.1.m_7 + - 1D321DE74BE703950000514E546D40FB.1.1.m_7 NCBI-SID: - - 397ADAD06F82F3FC_FFF8SID + - C9918FEA2E59A3EC_6870SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=397ADAD06F82F3FC_FFF8SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:26 GMT + - ncbi_sid=C9918FEA2E59A3EC_6870SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:04 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index 6de62ea2..8f081a8f 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -28,7 +28,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:26 GMT + - Thu, 13 Nov 2025 16:35:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,20 +69,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:26 GMT + - Thu, 13 Nov 2025 16:35:03 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E1728500004D3B37F5FCE9.1.1.m_7 + - 1D321DE74BE703950000414E557B1D39.1.1.m_7 NCBI-SID: - - 43292DBA1DA975C7_8EC6SID + - B732DD8BCA9C63D5_096ASID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=43292DBA1DA975C7_8EC6SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:26 GMT + - ncbi_sid=B732DD8BCA9C63D5_096ASID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:04 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -129,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:27 GMT + - Thu, 13 Nov 2025 16:35:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,7 +159,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:27 GMT + - Thu, 13 Nov 2025 16:35:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -200,20 +200,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:32 GMT + - Thu, 13 Nov 2025 16:35:09 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D339229EEE49AC50000534779485B76.1.1.m_7 + - 1D331AE54D41154500005E47B3B8FBD0.1.1.m_7 NCBI-SID: - - 4E93BE902DA726D0_4F62SID + - 52A80B0327F2A49C_7D93SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=4E93BE902DA726D0_4F62SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:32 GMT + - ncbi_sid=52A80B0327F2A49C_7D93SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:09 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -266,20 +266,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:32 GMT + - Thu, 13 Nov 2025 16:35:10 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E1728500004F3B44C4D8D6.1.1.m_7 + - 1D331AE54D41154500005C47B43DD582.1.1.m_7 NCBI-SID: - - 1EB54D34AF739945_3613SID + - F4AB2FC656BD27BE_AF3CSID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=1EB54D34AF739945_3613SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:33 GMT + - ncbi_sid=F4AB2FC656BD27BE_AF3CSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:10 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index 9e0653c7..14803f01 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml index 7a42dd60..222ab51c 100644 --- a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml +++ b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -386,7 +386,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -427,7 +427,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -457,7 +457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -499,7 +499,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:07 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -529,7 +529,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -571,7 +571,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -601,7 +601,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -631,7 +631,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -661,7 +661,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -691,7 +691,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -721,7 +721,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -751,7 +751,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -781,7 +781,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -811,7 +811,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -841,7 +841,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -871,7 +871,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -901,7 +901,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -931,7 +931,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -961,7 +961,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -991,7 +991,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1021,7 +1021,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1051,7 +1051,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1081,7 +1081,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1111,7 +1111,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1141,7 +1141,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1171,7 +1171,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1201,7 +1201,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1231,7 +1231,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1261,7 +1261,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1291,7 +1291,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1321,7 +1321,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1351,7 +1351,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1381,7 +1381,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1411,7 +1411,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1441,7 +1441,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1471,7 +1471,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1501,7 +1501,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1531,7 +1531,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1561,7 +1561,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1591,7 +1591,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1621,7 +1621,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1651,7 +1651,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1681,7 +1681,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1711,7 +1711,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1741,7 +1741,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1771,7 +1771,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1801,7 +1801,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1831,7 +1831,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1861,7 +1861,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1891,7 +1891,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1921,7 +1921,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1951,7 +1951,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1981,7 +1981,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2011,7 +2011,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2041,7 +2041,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2071,7 +2071,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2101,7 +2101,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2131,7 +2131,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2161,7 +2161,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2191,7 +2191,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2221,7 +2221,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2251,7 +2251,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2281,7 +2281,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2311,7 +2311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2341,7 +2341,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2371,7 +2371,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2401,7 +2401,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2431,7 +2431,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2461,7 +2461,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2491,7 +2491,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2521,7 +2521,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2551,7 +2551,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2581,7 +2581,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2611,7 +2611,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2641,7 +2641,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2671,7 +2671,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2701,7 +2701,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2731,7 +2731,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2761,7 +2761,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2791,7 +2791,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2821,7 +2821,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2851,7 +2851,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2881,7 +2881,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2923,7 +2923,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2953,7 +2953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2983,7 +2983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3013,7 +3013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3043,7 +3043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:08 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3073,7 +3073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3103,7 +3103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3133,7 +3133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3163,7 +3163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3193,7 +3193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3223,7 +3223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3253,7 +3253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3283,7 +3283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3313,7 +3313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3343,7 +3343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3373,7 +3373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3403,7 +3403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3433,7 +3433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3463,7 +3463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3493,7 +3493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3523,7 +3523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3553,7 +3553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3583,7 +3583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3613,7 +3613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3643,7 +3643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3673,7 +3673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3703,7 +3703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3733,7 +3733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3763,7 +3763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3793,7 +3793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3823,7 +3823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3853,7 +3853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3883,7 +3883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3913,7 +3913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3943,7 +3943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3973,7 +3973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4003,7 +4003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4033,7 +4033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4063,7 +4063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4093,7 +4093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4123,7 +4123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4153,7 +4153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4183,7 +4183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4213,7 +4213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4243,7 +4243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4273,7 +4273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4303,7 +4303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4345,7 +4345,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4375,7 +4375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4405,7 +4405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4435,7 +4435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4465,7 +4465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4495,7 +4495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4525,7 +4525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4555,7 +4555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4585,7 +4585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4615,7 +4615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4645,7 +4645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4675,7 +4675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4705,7 +4705,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4735,7 +4735,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4765,7 +4765,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4795,7 +4795,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4825,7 +4825,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4855,7 +4855,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4885,7 +4885,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4915,7 +4915,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4945,7 +4945,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4975,7 +4975,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5005,7 +5005,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:09 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5035,7 +5035,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5065,7 +5065,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5095,7 +5095,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5125,7 +5125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5155,7 +5155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5185,7 +5185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5215,7 +5215,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5245,7 +5245,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5275,7 +5275,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:10 GMT + - Thu, 13 Nov 2025 16:34:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index 263557e0..d0d23ffe 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -563,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -593,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -623,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -653,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -683,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -713,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -743,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -773,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -803,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -833,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -863,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -893,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -923,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -953,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -983,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1013,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1073,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1103,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1133,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1163,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1193,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1223,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1253,7 +1253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1294,20 +1294,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:14 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D339229EEE49AC5000057477BF2C4DA.1.1.m_7 + - 1D321DE74BE703950000384E66A2FBC6.1.1.m_7 NCBI-SID: - - EC163BECAFA98B2A_8913SID + - 44589BB3EFC3CE21_4D28SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=EC163BECAFA98B2A_8913SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:36 GMT + - ncbi_sid=44589BB3EFC3CE21_4D28SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:15 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: @@ -1315,7 +1315,7 @@ interactions: X-RateLimit-Limit: - '3' X-RateLimit-Remaining: - - '1' + - '2' X-UA-Compatible: - IE=Edge X-XSS-Protection: @@ -1360,20 +1360,20 @@ interactions: Content-Type: - text/plain Date: - - Wed, 12 Nov 2025 20:57:36 GMT + - Thu, 13 Nov 2025 16:35:15 GMT Keep-Alive: - timeout=4, max=40 NCBI-PHID: - - 1D324FA150E172850000563B4CF1466C.1.1.m_7 + - 1D331AE54D41154500003147BCC91E0A.1.1.m_7 NCBI-SID: - - 57EF5AC700F362A0_4872SID + - 44063949040FB6E3_FD47SID Referrer-Policy: - origin-when-cross-origin Server: - Finatra Set-Cookie: - - ncbi_sid=57EF5AC700F362A0_4872SID; domain=.nih.gov; path=/; expires=Thu, 12 - Nov 2026 20:57:37 GMT + - ncbi_sid=44063949040FB6E3_FD47SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 16:35:15 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload Transfer-Encoding: diff --git a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml index 07ea222c..73142374 100644 --- a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml +++ b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:37 GMT + - Thu, 13 Nov 2025 16:35:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_to_spdi.yaml b/tests/extras/cassettes/test_to_spdi.yaml index 2599cb32..c5382d65 100644 --- a/tests/extras/cassettes/test_to_spdi.yaml +++ b/tests/extras/cassettes/test_to_spdi.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 12 Nov 2025 20:57:13 GMT + - Thu, 13 Nov 2025 16:34:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/test_annotate_vcf.py b/tests/extras/test_annotate_vcf.py index b3ed7155..80752370 100644 --- a/tests/extras/test_annotate_vcf.py +++ b/tests/extras/test_annotate_vcf.py @@ -323,4 +323,5 @@ def test_annotate_vcf_rle(vcf_annotator: VcfAnnotator, vcr_cassette): assert vrs_repeat_lengths == (4, 4) # Both are 4-base repeats assert output_vrs_pkl.exists() - assert vcr_cassette.all_played + if vcr_cassette.write_protected: + assert vcr_cassette.all_played From 94ad73525587778ca9061da203d9e5c1773f592e Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 13 Nov 2025 12:13:50 -0500 Subject: [PATCH 24/41] add decode_compressed_response=True to vcr config --- .../test_data_proxies[rest_dataproxy].yaml | 8 +- tests/cassettes/test_normalize_allele.yaml | 44 +-- .../cassettes/test_normalize_clinvar_rle.yaml | 112 +++--- tests/cassettes/test_vcrtest.yaml | 2 +- .../test_annotate_vcf_grch37_attrs.yaml | 90 ++--- .../test_annotate_vcf_grch38_attrs.yaml | 96 ++--- ...st_annotate_vcf_grch38_attrs_altsonly.yaml | 96 ++--- .../test_annotate_vcf_grch38_noattrs.yaml | 96 ++--- .../test_annotate_vcf_pickle_only.yaml | 96 ++--- .../cassettes/test_annotate_vcf_rle.yaml | 36 +- .../cassettes/test_annotate_vcf_vcf_only.yaml | 96 ++--- tests/extras/cassettes/test_from_beacon.yaml | 4 +- tests/extras/cassettes/test_from_gnomad.yaml | 92 ++--- tests/extras/cassettes/test_from_hgvs.yaml | 8 +- .../test_get_vrs_object_invalid_input.yaml | 10 +- ...NC_000007.14:g.55181220del-expected2].yaml | 141 +------ ...g.55181230_55181231insGGCT-expected3].yaml | 203 +--------- ...NC_000007.14:g.55181320A>T-expected1].yaml | 135 +------ ...NC_000013.11:g.32316467dup-expected5].yaml | 141 +------ ....11:g.32331093_32331094dup-expected4].yaml | 353 +----------------- ...s[NC_000013.11:g.32936732=-expected0].yaml | 67 +--- ....10:g.289464_289465insCACA-expected8].yaml | 274 +------------- ...0019.10:g.289485_289500del-expected9].yaml | 217 +---------- ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 138 +------ ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 204 +--------- .../cassettes/test_reference_allele_rle.yaml | 6 +- .../test_rle_round_trip_gnomad_spdi.yaml | 346 ++++++++--------- .../extras/cassettes/test_rle_seq_limit.yaml | 216 +++-------- .../test_to_hgvs_iri_ref_keyerror.yaml | 2 +- tests/extras/cassettes/test_to_spdi.yaml | 4 +- tests/vcr_support.py | 1 + 31 files changed, 721 insertions(+), 2613 deletions(-) diff --git a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml index fa0e7dde..706461a3 100644 --- a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml +++ b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml @@ -27,7 +27,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:51 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index 9782123f..3892b9b4 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -585,7 +585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -615,7 +615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -645,7 +645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -675,7 +675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml index 03c36235..80f7510f 100644 --- a/tests/cassettes/test_normalize_clinvar_rle.yaml +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -563,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -593,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -623,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -653,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -683,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -713,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -743,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -773,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -803,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -833,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -863,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -893,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -923,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -953,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -983,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1013,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1073,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1103,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1133,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1163,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1193,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1223,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1253,7 +1253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1283,7 +1283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1313,7 +1313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1343,7 +1343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1373,7 +1373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1403,7 +1403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1433,7 +1433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1463,7 +1463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1493,7 +1493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1523,7 +1523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1553,7 +1553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1583,7 +1583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1613,7 +1613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1643,7 +1643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1673,7 +1673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:23 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_vcrtest.yaml b/tests/cassettes/test_vcrtest.yaml index bf38d399..05c7143b 100644 --- a/tests/cassettes/test_vcrtest.yaml +++ b/tests/cassettes/test_vcrtest.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:22 GMT + - Thu, 13 Nov 2025 17:07:52 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml index dcbe0e0d..4a4caa48 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml @@ -33,7 +33,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -63,7 +63,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -133,7 +133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -163,7 +163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -193,7 +193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -223,7 +223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -253,7 +253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -283,7 +283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -313,7 +313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -343,7 +343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -373,7 +373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -403,7 +403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -433,7 +433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -463,7 +463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -493,7 +493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -523,7 +523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -553,7 +553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -583,7 +583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -613,7 +613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -643,7 +643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -673,7 +673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -703,7 +703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -733,7 +733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -763,7 +763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -793,7 +793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -823,7 +823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -853,7 +853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -883,7 +883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -913,7 +913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -943,7 +943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -973,7 +973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1003,7 +1003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1033,7 +1033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1063,7 +1063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1093,7 +1093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1123,7 +1123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1153,7 +1153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1183,7 +1183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1213,7 +1213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1243,7 +1243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1273,7 +1273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1303,7 +1303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1333,7 +1333,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1363,7 +1363,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml index 5127ceaf..70406533 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml index d38de872..4887efb9 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:46 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:17 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index e90a22b6..061f8878 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml index e5648c7f..010b2ed3 100644 --- a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:47 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index 2ade1a13..29e606cb 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml index 17481857..fdab7f66 100644 --- a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:18 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_beacon.yaml b/tests/extras/cassettes/test_from_beacon.yaml index 6b47cb8b..71c26ea4 100644 --- a/tests/extras/cassettes/test_from_beacon.yaml +++ b/tests/extras/cassettes/test_from_beacon.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_gnomad.yaml b/tests/extras/cassettes/test_from_gnomad.yaml index 8e8b58c2..2146969b 100644 --- a/tests/extras/cassettes/test_from_gnomad.yaml +++ b/tests/extras/cassettes/test_from_gnomad.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -95,7 +95,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -125,7 +125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -155,7 +155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -185,7 +185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -304,7 +304,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -334,7 +334,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -376,7 +376,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -406,7 +406,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -436,7 +436,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -466,7 +466,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -496,7 +496,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -526,7 +526,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -556,7 +556,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -586,7 +586,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -616,7 +616,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -646,7 +646,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -676,7 +676,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -706,7 +706,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -736,7 +736,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -766,7 +766,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -796,7 +796,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -826,7 +826,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -868,7 +868,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -898,7 +898,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -940,7 +940,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -970,7 +970,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:50 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1000,7 +1000,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1030,7 +1030,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1060,7 +1060,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1090,7 +1090,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1120,7 +1120,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1150,7 +1150,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1180,7 +1180,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1210,7 +1210,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1240,7 +1240,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1281,7 +1281,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1311,7 +1311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1352,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1382,7 +1382,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1412,7 +1412,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1442,7 +1442,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1472,7 +1472,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_hgvs.yaml b/tests/extras/cassettes/test_from_hgvs.yaml index 0c164c0a..978f1607 100644 --- a/tests/extras/cassettes/test_from_hgvs.yaml +++ b/tests/extras/cassettes/test_from_hgvs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -154,7 +154,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml index 2517a339..eb385286 100644 --- a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml +++ b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:48 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -94,7 +94,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:19 GMT + - Thu, 13 Nov 2025 17:07:49 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index bbba0dc9..a9b9b326 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:52 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:52 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:52 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:52 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,141 +143,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:52 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyMDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw - 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkCuECAAAA///iAgAAAP//AwD6HdFpWgAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:51 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D4115450000314799E37087.1.1.m_7 - NCBI-SID: - - FA2D9F5A972DFBE4_F35ESID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=FA2D9F5A972DFBE4_F35ESID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:52 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyMDXQjDxEDBIz83X6E4sSAzNa9YITmjCMgtzs9N - VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQKcXd3dHQHghBnZ8cQ9xB3ZyDgAgAAAP// - 4gIAAAD//wMAmg0v4W4AAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:53 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D411545000055479A7DB2BD.1.1.m_7 - NCBI-SID: - - 04EFDC103B4478E3_B31CSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=04EFDC103B4478E3_B31CSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:53 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index ac0f7111..545c796d 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:53 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:53 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,207 +83,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:53 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDI2NDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw - 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkcuYCAAAA///iAgAAAP//AwCoL8VLWgAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:52 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000634E41E706AD.1.1.m_7 - NCBI-SID: - - 131002C386962811_AEECSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=131002C386962811_AEECSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:53 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDI2MDXQjD1EDBIz83X6E4sSAzNa9YITmjCMgtzs9N - VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydnYMcQ9xdwaCECAKcQ5xd3fmAgAAAP// - 4gIAAAD//wMAmUGUnW4AAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:53 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000584E42B39F47.1.1.m_7 - NCBI-SID: - - AF0459F6D19A8458_575DSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=AF0459F6D19A8458_575DSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:53 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyNzXQjD2EDBIz83X6E4sSAzNa9YITmjCMgtzs9N - VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydw9x5gIAAAD//+ICAAAA//8DAImcWFxd - AAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:53 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE7039500004E4E4351D7E3.1.1.m_7 - NCBI-SID: - - DE8CF346CC0A7C16_224ESID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=DE8CF346CC0A7C16_224ESID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:54 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index eb9f77b4..37394b40 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,141 +64,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDYyMDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw - 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkcuQCAAAA///iAgAAAP//AwD5Qh4fWgAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:51 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D4115450000484798C2633F.1.1.m_7 - NCBI-SID: - - F562994DD8EDC05F_9214SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=F562994DD8EDC05F_9214SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:51 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDYyMDXQjDxEDBIz83X6E4sSAzNa9YITmjCMgtzs9N - VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydHQGAUdn9xAgdHYGohB3LgAAAAD//+IC - AAAA//8DAKrmuS9uAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:51 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D859482150000635164AFF077.1.1.m_7 - NCBI-SID: - - ADD0E16FDC632516_3E27SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=ADD0E16FDC632516_3E27SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:52 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index 2e1d7748..f7b039af 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:57 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:57 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:57 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:57 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,141 +143,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:57 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NDMxMzc10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V - MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRy5AIAAAD//+ICAAAA//8DABNU0u5bAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:56 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000364E48992207.1.1.m_7 - NCBI-SID: - - B9DBC13B1D357E0E_2649SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=B9DBC13B1D357E0E_2649SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:57 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NDMxMzc10Iw8JcwSM/N1+hOLEgMzWvWCE5owjILc7P - TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5HIMCXF3dwxxdnZ0dHQHQXcgkwsAAAD/ - /+ICAAAA//8DAG14V2hvAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:57 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D8594821500002A5168FA75A8.1.1.m_7 - NCBI-SID: - - D507430C67717784_6175SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=D507430C67717784_6175SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:57 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index 590df10b..4c45395a 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,327 +533,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:54 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMLY10Iw9JEwSM/N1+hOLEgMzWvWCE5owjILc7P - TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5ApBAlwAAAAA///iAgAAAP//AwBz5s6G - ZgAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:54 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D8594821500005E5166E3B626.1.1.m_7 - NCBI-SID: - - BC8832B1821E1D7C_EA4ASID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=BC8832B1821E1D7C_EA4ASID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:54 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLE10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V - MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQK4QIAAAD//+ICAAAA//8DAOcxeKNbAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:54 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D411545000045479D795EAE.1.1.m_7 - NCBI-SID: - - CB392AFFDB2F4674_0624SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=CB392AFFDB2F4674_0624SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:55 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMLY10ww9DQRMEjPzdfoTixIDM1r1ghOaMIyC3O - z01VMDTWUXAPcs4wttArACoLKMrMTSyqVHAsLk7NTcqp5ApBAu6O7u4h7kAyxBnIcQaS7iFcAAAA - AP//4gIAAAD//wMAlOTJvHoAAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:54 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE7039500003B4E45970DC9.1.1.m_7 - NCBI-SID: - - 66E37AB860B8C332_564FSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=66E37AB860B8C332_564FSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:55 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAAKpWSi0qyi9SslJyDPBUKEosSVXIyczNLFFIrUhOTU1JTVHSUUosyNTNTq0EqjGz - 1DM0N9azNNczNLIAyiTnl+aVAMVNgGywNiDbWKmWCwAAAP//AwASzIfrVgAAAA== - headers: - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining,Retry-After - Connection: - - Keep-Alive - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - application/json - Date: - - Thu, 13 Nov 2025 16:34:54 GMT - Keep-Alive: - - timeout=4, max=40 - Referrer-Policy: - - origin-when-cross-origin - Retry-After: - - '2' - Server: - - Finatra - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - content-length: - - '103' - status: - code: 429 - message: Too Many Requests -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLY10ow0TBIz83X6E4sSAzNa9YITmjCMgtzs9N - VTA01lFwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkCgnhAgAAAP//4gIAAAD//wMAmBgGAVwA - AAA= - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:56 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D859482150000295168561C3D.1.1.m_7 - NCBI-SID: - - 3AB35BC67928A019_000ASID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=3AB35BC67928A019_000ASID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:56 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index cf37b1ed..ed8ea525 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -23,75 +23,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI0tjM3NjI10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V - MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRy5gIAAAD//+ICAAAA//8DALFcilZbAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:50 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D8594821500002F5163717669.1.1.m_7 - NCBI-SID: - - C263B4A3A9447EAA_25ABSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=C263B4A3A9447EAA_25ABSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:51 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index 4e5d4eb4..18907968 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:10 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:10 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:10 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:10 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:10 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,272 +173,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:10 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM1NdMGWm4JGfm69QnFiQmZpXrJCcUQTkFufnpioY - WuoouAc5Zxhb6BUYmigEFGXmJhZVKjgWF6fmJuVUcjk7cgEAAAD//+ICAAAA//8DAN6im+lYAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:10 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500004447B5527C07.1.1.m_7 - NCBI-SID: - - 859A1EBDB6CB5B53_34D5SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=859A1EBDB6CB5B53_34D5SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:10 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTMzNdCKXgkZ+br1CcWJCZmleskJxRBOQW5+emKhha - 6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyOXIBAAAA///iAgAAAP//AwDscSJIVwAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:10 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500003747B5EE4926.1.1.m_7 - NCBI-SID: - - 1DB89A0683D19F8F_EA95SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=1DB89A0683D19F8F_EA95SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:11 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM1NdEGVhpuCRn5uvUJxYkJmaV6yQnFEE5Bbn56Yq - GFrqKLgHOWcYW+gVGJooBBRl5iYWVSo4Fhen5iblVHI5O7o7OzqHhIS4u7s7urs7O4NJLgAAAAD/ - /+ICAAAA//8DAME0cP1sAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:11 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D8594821500003D517385F071.1.1.m_7 - NCBI-SID: - - 48A0C90787916B15_5842SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=48A0C90787916B15_5842SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:11 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM2NdMGWm4JGfm69QnFiQmZpXrJCcUQTkFufnpioY - WuoouAc5Zxhb6BUYmigEFGXmJhZVKjgWF6fmJuVUcjmHODtyAQAAAP//4gIAAAD//wMAcnFU/1oA - AAA= - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:11 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D340D3D859482150000545173E6ED0E.1.1.m_7 - NCBI-SID: - - A499FA9B70233EC8_407ESID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=A499FA9B70233EC8_407ESID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:12 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index 617ae7c7..cffc64c4 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,207 +293,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:12 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTC0NdIGVqYKjgkZ+br1CcWJCZmleskJxRBOQW5+em - Khha6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyObs7urs7uwOxo7tjiLMjmM8FAAAA///i - AgAAAP//AwCUo69uawAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:12 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000454E633A4376.1.1.m_7 - NCBI-SID: - - E4E0C334D730FF68_42E3SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=E4E0C334D730FF68_42E3SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:12 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0tTA0NdCKXgkZ+br1CcWJCZmleskJxRBOQW5+emKhha - 6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyuXMBAAAA///iAgAAAP//AwDTOp6eVwAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:13 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500003047B8CAE7DA.1.1.m_7 - NCBI-SID: - - F356D886FE60C574_F8C2SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=F356D886FE60C574_F8C2SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:13 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAAByHwQqDQAxE735FPqCKWS3s9lAIOaQnkdJ70bKg0O3K5uTfmzow8+bdB363FgwN - tjfnQ++xNlwdwiOnDDpta/wpfJZiqjlFwHABefLS+WbDHsaypqnsQKoxzd+9YiERFisJvZhON4qc - /l9mO1wdAAAA///iAgAAAP//AwD3jSMmfwAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:13 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500006147B9389CCF.1.1.m_7 - NCBI-SID: - - A0ECA66A1FC8DE6A_FB4CSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=A0ECA66A1FC8DE6A_FB4CSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:13 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '0' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index c5a7cc85..35c10ee1 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -28,78 +28,12 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:58 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAAAzGsQrCMBAG4L1P8Y8KVXLpYHUQ6uRiCX0BOSXYQJuE3EXw7e3wwXcdH09jqOvI - 2PORLv3JHja4pzVBOAcfBbkk9SEiz0nyzMriQSj+UxfWVH6Q+qoxKMjesHPO0bRt30ILR3mXkBVf - LoGjom+xTuPQDM0fAAD//+ICAAAA//8DADLRQFd8AAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:34:58 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE7039500005A4E49D79D93.1.1.m_7 - NCBI-SID: - - EBA1C02DEA4C21A5_E572SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=EBA1C02DEA4C21A5_E572SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:34:58 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK - request: body: null headers: @@ -129,7 +63,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:59 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,76 +93,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:59 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAAAzGsQrCMBQF0L1fcUeFKk062DoIsUNdLKFkl6cEG7BJSF4E/95O51ym+6NpRNuK - RvZHce5O8tD1ErewBmSKzvqMmAJb5xGXkONCTNlCINl3+RCH9EMuz+IdQ8grdlprMW/b1+BEPr+S - i4wvJUee0dVY50lVyoxKDWZQW8zGOCpjqj8AAAD//+ICAAAA//8DAEDhNYqQAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:03 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000514E546D40FB.1.1.m_7 - NCBI-SID: - - C9918FEA2E59A3EC_6870SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=C9918FEA2E59A3EC_6870SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:04 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index 8f081a8f..38f23108 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -28,78 +28,12 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:04 GMT + - Thu, 13 Nov 2025 17:07:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAABTEQQrCMBAF0H1P8ZcKrTAVtLoQxIWCWKgXkGlNayCThGRa8PbiW7xT+3hRQ/tD - s6Ej1btt9Q+3IAGZozU+IwblnO0sWIJTnkw1sZo3hg97bxzy3I8s1n3RQYz0JoGwul/ajtYlNLHP - Q7JRsXCy7BV1CXm25+Ja/AAAAP//4gIAAAD//wMAjtT/qIAAAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:03 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000414E557B1D39.1.1.m_7 - NCBI-SID: - - B732DD8BCA9C63D5_096ASID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=B732DD8BCA9C63D5_096ASID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:04 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK - request: body: null headers: @@ -129,7 +63,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:04 GMT + - Thu, 13 Nov 2025 17:07:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -159,142 +93,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:04 GMT + - Thu, 13 Nov 2025 17:07:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAAAzEvQrCMBQG0L1P8Y0KrZAKGh0E6VBBDFSyy21Na6D5Ibkt+PZ6hnNRj5eQ4niS - O3EW9WFf/ZO4BReQKVrjM2JgytkuDmuYmSZTTcTmjeFD3psZeelHcnb+ooMzrjcJApt7ozqxLcGJ - fB6SjYyVkiXPqEu4p7oWrdaNbosfAAAA///iAgAAAP//AwAE2YHOhQAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:09 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500005E47B3B8FBD0.1.1.m_7 - NCBI-SID: - - 52A80B0327F2A49C_7D93SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=52A80B0327F2A49C_7D93SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:09 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAABTEsQrCMBQF0N2vuKNCIk0VBQdBHBQKhRZ3eW2fNZi8lCQt+PfiGc65bp/Fvjga - szUnUx52+h/uwQckmixLwhQypWRnjyW4TCPrkTIP6N8kwk6hah7a2Q8jzd2LvHVfBc++4wiDdXWt - G7NRyJEk9dFOGQtFS5JRKkgQ3YfByoi2vqxuqx8AAAD//+ICAAAA//8DACrfWUyTAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:10 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500005C47B43DD582.1.1.m_7 - NCBI-SID: - - F4AB2FC656BD27BE_AF3CSID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=F4AB2FC656BD27BE_AF3CSID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:10 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index 14803f01..4b218886 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml index 222ab51c..28810731 100644 --- a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml +++ b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -386,7 +386,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -427,7 +427,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -457,7 +457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -499,7 +499,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -529,7 +529,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -571,7 +571,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -601,7 +601,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -631,7 +631,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -661,7 +661,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -691,7 +691,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -721,7 +721,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -751,7 +751,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -781,7 +781,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -811,7 +811,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -841,7 +841,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -871,7 +871,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -901,7 +901,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -931,7 +931,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -961,7 +961,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -991,7 +991,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1021,7 +1021,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1051,7 +1051,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1081,7 +1081,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1111,7 +1111,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1141,7 +1141,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1171,7 +1171,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1201,7 +1201,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1231,7 +1231,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1261,7 +1261,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1291,7 +1291,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1321,7 +1321,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1351,7 +1351,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1381,7 +1381,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1411,7 +1411,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1441,7 +1441,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1471,7 +1471,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1501,7 +1501,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1531,7 +1531,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1561,7 +1561,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1591,7 +1591,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1621,7 +1621,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1651,7 +1651,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1681,7 +1681,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1711,7 +1711,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:46 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1741,7 +1741,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1771,7 +1771,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1801,7 +1801,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1831,7 +1831,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1861,7 +1861,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1891,7 +1891,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1921,7 +1921,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1951,7 +1951,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1981,7 +1981,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2011,7 +2011,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2041,7 +2041,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2071,7 +2071,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2101,7 +2101,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2131,7 +2131,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2161,7 +2161,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2191,7 +2191,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2221,7 +2221,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2251,7 +2251,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2281,7 +2281,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2311,7 +2311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2341,7 +2341,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2371,7 +2371,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2401,7 +2401,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2431,7 +2431,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2461,7 +2461,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2491,7 +2491,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2521,7 +2521,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2551,7 +2551,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2581,7 +2581,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2611,7 +2611,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2641,7 +2641,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2671,7 +2671,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2701,7 +2701,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2731,7 +2731,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2761,7 +2761,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2791,7 +2791,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2821,7 +2821,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2851,7 +2851,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2881,7 +2881,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2923,7 +2923,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2953,7 +2953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2983,7 +2983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3013,7 +3013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3043,7 +3043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3073,7 +3073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3103,7 +3103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3133,7 +3133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3163,7 +3163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3193,7 +3193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3223,7 +3223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3253,7 +3253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:28 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3283,7 +3283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3313,7 +3313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3343,7 +3343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3373,7 +3373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3403,7 +3403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3433,7 +3433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3463,7 +3463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3493,7 +3493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3523,7 +3523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3553,7 +3553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3583,7 +3583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3613,7 +3613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3643,7 +3643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3673,7 +3673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3703,7 +3703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3733,7 +3733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3763,7 +3763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3793,7 +3793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3823,7 +3823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3853,7 +3853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:47 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3883,7 +3883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3913,7 +3913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3943,7 +3943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3973,7 +3973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4003,7 +4003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4033,7 +4033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4063,7 +4063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4093,7 +4093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4123,7 +4123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4153,7 +4153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4183,7 +4183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4213,7 +4213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4243,7 +4243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4273,7 +4273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4303,7 +4303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4345,7 +4345,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4375,7 +4375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4405,7 +4405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4435,7 +4435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4465,7 +4465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4495,7 +4495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4525,7 +4525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4555,7 +4555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4585,7 +4585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4615,7 +4615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4645,7 +4645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4675,7 +4675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4705,7 +4705,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4735,7 +4735,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4765,7 +4765,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4795,7 +4795,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4825,7 +4825,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4855,7 +4855,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4885,7 +4885,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4915,7 +4915,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4945,7 +4945,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4975,7 +4975,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5005,7 +5005,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5035,7 +5035,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5065,7 +5065,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5095,7 +5095,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5125,7 +5125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5155,7 +5155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5185,7 +5185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5215,7 +5215,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5245,7 +5245,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:30 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5275,7 +5275,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:48 GMT + - Thu, 13 Nov 2025 17:07:30 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index d0d23ffe..c96e6f5e 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -563,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -593,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -623,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -653,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -683,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -713,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -743,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -773,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -803,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:44 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -833,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -863,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -893,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -923,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -953,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -983,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1013,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1073,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1103,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1133,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1163,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1193,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1223,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1253,142 +1253,10 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:35:14 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMTY10Iw9JEwSM/N1+hOLEgMzWvWCE5owjILc7P - TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5AoJCXF0Dwlxd3R0DnF0dnQHssHAHQmB - pEOQABcAAAD//+ICAAAA//8DAN0Jx5SOAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:14 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D321DE74BE703950000384E66A2FBC6.1.1.m_7 - NCBI-SID: - - 44589BB3EFC3CE21_4D28SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=44589BB3EFC3CE21_4D28SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:15 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '2' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: !!binary | - H4sIAAAAAAAAAEyKsQrDMAxEd3+FPqAJUZWhdCgIDepUStBe0mJIoK6DPeXvq2TK4zjuuLs95NU5 - SC3ilc5E2PXU7AGxh3tOGeq4zPFX4TMVrzWnCEgn0EEmurSL355lTmNZgWuN6f1dg5mxmimzGAur - 5x09aJvtgG43dTfxIu5BLfwBAAD//+ICAAAA//8DAGgcIEKjAAAA - headers: - Access-Control-Allow-Origin: - - '*' - Access-Control-Expose-Headers: - - X-RateLimit-Limit,X-RateLimit-Remaining - Cache-Control: - - private - Connection: - - Keep-Alive - Content-Disposition: - - attachment; filename="sequence.fasta" - Content-Security-Policy: - - upgrade-insecure-requests - Content-Type: - - text/plain - Date: - - Thu, 13 Nov 2025 16:35:15 GMT - Keep-Alive: - - timeout=4, max=40 - NCBI-PHID: - - 1D331AE54D41154500003147BCC91E0A.1.1.m_7 - NCBI-SID: - - 44063949040FB6E3_FD47SID - Referrer-Policy: - - origin-when-cross-origin - Server: - - Finatra - Set-Cookie: - - ncbi_sid=44063949040FB6E3_FD47SID; domain=.nih.gov; path=/; expires=Fri, 13 - Nov 2026 16:35:15 GMT - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-RateLimit-Limit: - - '3' - X-RateLimit-Remaining: - - '1' - X-UA-Compatible: - - IE=Edge - X-XSS-Protection: - - 1; mode=block - content-encoding: - - gzip - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml index 73142374..cf94c358 100644 --- a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml +++ b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:35:16 GMT + - Thu, 13 Nov 2025 17:07:45 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_to_spdi.yaml b/tests/extras/cassettes/test_to_spdi.yaml index c5382d65..e29411f9 100644 --- a/tests/extras/cassettes/test_to_spdi.yaml +++ b/tests/extras/cassettes/test_to_spdi.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 16:34:51 GMT + - Thu, 13 Nov 2025 17:07:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/vcr_support.py b/tests/vcr_support.py index f83627b9..20badce6 100644 --- a/tests/vcr_support.py +++ b/tests/vcr_support.py @@ -9,4 +9,5 @@ vcr = vcrpy.VCR( cassette_library_dir=test_data_dir, record_mode=os.environ.get("VCR_RECORD_MODE", "new_episodes"), + decode_compressed_response=True, ) From 7723d5cfbe4c9b73c1910ade3c48f0a1e3b4c3e3 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 13 Nov 2025 13:30:26 -0500 Subject: [PATCH 25/41] Add vcr_config to conftest.py. Delete vcr_support.py. Refresh cassettes --- .../test_data_proxies[rest_dataproxy].yaml | 8 +- tests/cassettes/test_normalize_allele.yaml | 44 +-- .../cassettes/test_normalize_clinvar_rle.yaml | 112 +++--- tests/cassettes/test_vcrtest.yaml | 2 +- tests/conftest.py | 8 + .../test_annotate_vcf_grch37_attrs.yaml | 90 ++--- .../test_annotate_vcf_grch38_attrs.yaml | 96 ++--- ...st_annotate_vcf_grch38_attrs_altsonly.yaml | 96 ++--- .../test_annotate_vcf_grch38_noattrs.yaml | 96 ++--- .../test_annotate_vcf_pickle_only.yaml | 96 ++--- .../cassettes/test_annotate_vcf_rle.yaml | 36 +- .../cassettes/test_annotate_vcf_vcf_only.yaml | 96 ++--- tests/extras/cassettes/test_from_beacon.yaml | 4 +- tests/extras/cassettes/test_from_gnomad.yaml | 92 ++--- tests/extras/cassettes/test_from_hgvs.yaml | 8 +- .../test_get_vrs_object_invalid_input.yaml | 10 +- ...NC_000007.14:g.55181220del-expected2].yaml | 141 ++++++- ...g.55181230_55181231insGGCT-expected3].yaml | 203 +++++++++- ...NC_000007.14:g.55181320A>T-expected1].yaml | 135 ++++++- ...NC_000013.11:g.32316467dup-expected5].yaml | 141 ++++++- ....11:g.32331093_32331094dup-expected4].yaml | 353 +++++++++++++++++- ...s[NC_000013.11:g.32936732=-expected0].yaml | 67 +++- ....10:g.289464_289465insCACA-expected8].yaml | 274 +++++++++++++- ...0019.10:g.289485_289500del-expected9].yaml | 217 ++++++++++- ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 138 ++++++- ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 204 +++++++++- .../cassettes/test_reference_allele_rle.yaml | 6 +- .../test_rle_round_trip_gnomad_spdi.yaml | 346 ++++++++--------- .../extras/cassettes/test_rle_seq_limit.yaml | 216 ++++++++--- .../test_to_hgvs_iri_ref_keyerror.yaml | 2 +- tests/extras/cassettes/test_to_spdi.yaml | 4 +- tests/vcr_support.py | 13 - 32 files changed, 2621 insertions(+), 733 deletions(-) delete mode 100644 tests/vcr_support.py diff --git a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml index 706461a3..ec7fa4de 100644 --- a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml +++ b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml @@ -27,7 +27,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:51 GMT + - Thu, 13 Nov 2025 17:52:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:51 GMT + - Thu, 13 Nov 2025 17:52:38 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -99,7 +99,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:51 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -129,7 +129,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:51 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index 3892b9b4..dea228bc 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -585,7 +585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -615,7 +615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -645,7 +645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -675,7 +675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml index 80f7510f..3bf441ba 100644 --- a/tests/cassettes/test_normalize_clinvar_rle.yaml +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -563,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -593,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -623,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -653,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -683,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -713,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -743,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -773,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -803,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -833,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -863,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -893,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -923,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -953,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -983,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1013,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1073,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1103,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1133,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1163,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1193,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1223,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1253,7 +1253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1283,7 +1283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1313,7 +1313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1343,7 +1343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1373,7 +1373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1403,7 +1403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1433,7 +1433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1463,7 +1463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1493,7 +1493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1523,7 +1523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1553,7 +1553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1583,7 +1583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1613,7 +1613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1643,7 +1643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1673,7 +1673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:40 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/cassettes/test_vcrtest.yaml b/tests/cassettes/test_vcrtest.yaml index 05c7143b..710ad525 100644 --- a/tests/cassettes/test_vcrtest.yaml +++ b/tests/cassettes/test_vcrtest.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:52 GMT + - Thu, 13 Nov 2025 17:52:39 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/conftest.py b/tests/conftest.py index 36bf5de4..a6a6ca59 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,6 +21,14 @@ def rest_dataproxy(): ) +@pytest.fixture(scope="module") +def vcr_config(): + """Configure VCR.py for all tests.""" + return { + "decode_compressed_response": True, + } + + # See https://github.com/ga4gh/vrs-python/issues/24 # @pytest.fixture(autouse=True) # def setup_doctest(doctest_namespace, tlr): diff --git a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml index 4a4caa48..35cbb870 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml @@ -33,7 +33,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -63,7 +63,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -133,7 +133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -163,7 +163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -193,7 +193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -223,7 +223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -253,7 +253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -283,7 +283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -313,7 +313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -343,7 +343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -373,7 +373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -403,7 +403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -433,7 +433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -463,7 +463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -493,7 +493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -523,7 +523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -553,7 +553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -583,7 +583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -613,7 +613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -643,7 +643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -673,7 +673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -703,7 +703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -733,7 +733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -763,7 +763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -793,7 +793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -823,7 +823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -853,7 +853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -883,7 +883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -913,7 +913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -943,7 +943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -973,7 +973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1003,7 +1003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1033,7 +1033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1063,7 +1063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1093,7 +1093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1123,7 +1123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1153,7 +1153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1183,7 +1183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1213,7 +1213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1243,7 +1243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1273,7 +1273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1303,7 +1303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1333,7 +1333,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1363,7 +1363,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml index 70406533..5c3c2741 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml index 4887efb9..cf100f0c 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:46 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:34 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index 061f8878..11ad96b1 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:33 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml index 010b2ed3..283862ab 100644 --- a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:47 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index 29e606cb..354e88d8 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -375,7 +375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -405,7 +405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -435,7 +435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -465,7 +465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -495,7 +495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -525,7 +525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -555,7 +555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml index fdab7f66..7575ceb2 100644 --- a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -107,7 +107,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -137,7 +137,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -167,7 +167,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -197,7 +197,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -287,7 +287,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -317,7 +317,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -347,7 +347,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -377,7 +377,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -407,7 +407,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -437,7 +437,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -467,7 +467,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -497,7 +497,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -527,7 +527,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -557,7 +557,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -587,7 +587,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -617,7 +617,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -647,7 +647,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -677,7 +677,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -707,7 +707,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -737,7 +737,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -767,7 +767,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -797,7 +797,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -827,7 +827,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -857,7 +857,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -887,7 +887,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -917,7 +917,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -947,7 +947,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -977,7 +977,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1007,7 +1007,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1037,7 +1037,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1067,7 +1067,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1097,7 +1097,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1127,7 +1127,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1157,7 +1157,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1187,7 +1187,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1217,7 +1217,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1247,7 +1247,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1277,7 +1277,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1307,7 +1307,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:35 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1337,7 +1337,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1367,7 +1367,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1397,7 +1397,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1427,7 +1427,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1457,7 +1457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_beacon.yaml b/tests/extras/cassettes/test_from_beacon.yaml index 71c26ea4..2b64af3d 100644 --- a/tests/extras/cassettes/test_from_beacon.yaml +++ b/tests/extras/cassettes/test_from_beacon.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_gnomad.yaml b/tests/extras/cassettes/test_from_gnomad.yaml index 2146969b..230148f9 100644 --- a/tests/extras/cassettes/test_from_gnomad.yaml +++ b/tests/extras/cassettes/test_from_gnomad.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -95,7 +95,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -125,7 +125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -155,7 +155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -185,7 +185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -227,7 +227,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -257,7 +257,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -304,7 +304,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -334,7 +334,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -376,7 +376,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -406,7 +406,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -436,7 +436,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -466,7 +466,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -496,7 +496,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -526,7 +526,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -556,7 +556,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -586,7 +586,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -616,7 +616,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -646,7 +646,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -676,7 +676,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -706,7 +706,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -736,7 +736,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -766,7 +766,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -796,7 +796,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -826,7 +826,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -868,7 +868,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -898,7 +898,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -940,7 +940,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -970,7 +970,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1000,7 +1000,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1030,7 +1030,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1060,7 +1060,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1090,7 +1090,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1120,7 +1120,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1150,7 +1150,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1180,7 +1180,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1210,7 +1210,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1240,7 +1240,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1281,7 +1281,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1311,7 +1311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1352,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1382,7 +1382,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1412,7 +1412,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1442,7 +1442,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:08 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1472,7 +1472,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:32 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_from_hgvs.yaml b/tests/extras/cassettes/test_from_hgvs.yaml index 978f1607..a1224d25 100644 --- a/tests/extras/cassettes/test_from_hgvs.yaml +++ b/tests/extras/cassettes/test_from_hgvs.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -82,7 +82,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -154,7 +154,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml index eb385286..a212bd81 100644 --- a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml +++ b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:48 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -94,7 +94,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:49 GMT + - Thu, 13 Nov 2025 17:52:36 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index a9b9b326..26219cc7 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,10 +143,141 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:10 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyMDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw + 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkCuECAAAA///iAgAAAP//AwD6HdFpWgAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:09 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D85948215000036690709BE88.1.1.m_7 + NCBI-SID: + - 2BB3B0B784A7134E_8B8BSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=2BB3B0B784A7134E_8B8BSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:10 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyMDXQjDxEDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQKcXd3dHQHghBnZ8cQ9xB3ZyDgAgAAAP// + 4gIAAAD//wMAmg0v4W4AAAA= + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:10 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D8594821500004A6907DC7539.1.1.m_7 + NCBI-SID: + - A00D683C09A35320_807DSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=A00D683C09A35320_807DSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:10 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index 545c796d..e01873b7 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:11 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:11 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,10 +83,207 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:11 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDI2NDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw + 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkcuYCAAAA///iAgAAAP//AwCoL8VLWgAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:10 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D41154500004E5E453721F5.1.1.m_7 + NCBI-SID: + - C4FC130A47116172_4128SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=C4FC130A47116172_4128SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:11 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDI2MDXQjD1EDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydnYMcQ9xdwaCECAKcQ5xd3fmAgAAAP// + 4gIAAAD//wMAmUGUnW4AAAA= + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:10 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D8594821500006369097B8517.1.1.m_7 + NCBI-SID: + - 87D7CA2723074F6F_442ASID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=87D7CA2723074F6F_442ASID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:11 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDIyNzXQjD2EDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydw9x5gIAAAD//+ICAAAA//8DAImcWFxd + AAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:11 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D41154500005E5E462B4F5B.1.1.m_7 + NCBI-SID: + - 0104625DA31B988F_65E5SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=0104625DA31B988F_65E5SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:11 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index 37394b40..9ecfeff2 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,10 +64,141 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDYyMDXRhDwSM/N1+hOLEgMzWvWCE5owjILc7PTVUw + 11FwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkcuQCAAAA///iAgAAAP//AwD5Qh4fWgAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:08 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D8594821500004F69052216E8.1.1.m_7 + NCBI-SID: + - CABF11FF77E070B8_B3F3SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=CABF11FF77E070B8_B3F3SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:09 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAFzPUMTK1NTQwtDYyMDXQjDxEDBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTDXUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRydHQGAUdn9xAgdHYGohB3LgAAAAD//+IC + AAAA//8DAKrmuS9uAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:10 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D85948215000024690607A11E.1.1.m_7 + NCBI-SID: + - 3E03C27D4322703F_48ADSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=3E03C27D4322703F_48ADSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:09 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index f7b039af..8c734c35 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,10 +143,141 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:14 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NDMxMzc10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRy5AIAAAD//+ICAAAA//8DABNU0u5bAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:14 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D41154500004A5E4AA56FB4.1.1.m_7 + NCBI-SID: + - 2847F2690898A4C9_78B0SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=2847F2690898A4C9_78B0SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:15 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NDMxMzc10Iw8JcwSM/N1+hOLEgMzWvWCE5owjILc7P + TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5HIMCXF3dwxxdnZ0dHQHQXcgkwsAAAD/ + /+ICAAAA//8DAG14V2hvAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:15 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE70395000018648A581DF2.1.1.m_7 + NCBI-SID: + - 74123D215538EDB6_B055SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=74123D215538EDB6_B055SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:15 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index 4c45395a..74d5e4c3 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,10 +533,327 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:12 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMLY10Iw9JEwSM/N1+hOLEgMzWvWCE5owjILc7P + TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5ApBAlwAAAAA///iAgAAAP//AwBz5s6G + ZgAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:11 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D85948215000067690B57BDA8.1.1.m_7 + NCBI-SID: + - 883D9EE35E4405EE_7C35SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=883D9EE35E4405EE_7C35SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:12 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLE10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeQK4QIAAAD//+ICAAAA//8DAOcxeKNbAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:12 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D4115450000565E4790C6B3.1.1.m_7 + NCBI-SID: + - 1D5DA0D8924A71E3_B259SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=1D5DA0D8924A71E3_B259SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:12 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMLY10ww9DQRMEjPzdfoTixIDM1r1ghOaMIyC3O + z01VMDTWUXAPcs4wttArACoLKMrMTSyqVHAsLk7NTcqp5ApBAu6O7u4h7kAyxBnIcQaS7iFcAAAA + AP//4gIAAAD//wMAlOTJvHoAAAA= + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:12 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D85948215000067690C9EDFC4.1.1.m_7 + NCBI-SID: + - 88AB7F246BB0ED6C_3D34SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=88AB7F246BB0ED6C_3D34SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:13 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAKpWSi0qyi9SslJyDPBUKEosSVXIyczNLFFIrUhOTU1JTVHSUUosyNTNTq0EqjGz + 1DM0N9azNNczNLIAyiTnl+aVAMVNgGywNiDbWKmWCwAAAP//AwASzIfrVgAAAA== + headers: + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining,Retry-After + Connection: + - Keep-Alive + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - application/json + Date: + - Thu, 13 Nov 2025 17:52:12 GMT + Keep-Alive: + - timeout=4, max=40 + Referrer-Policy: + - origin-when-cross-origin + Retry-After: + - '2' + Server: + - Finatra + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + content-length: + - '103' + status: + code: 429 + message: Too Many Requests +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwNLY10ow0TBIz83X6E4sSAzNa9YITmjCMgtzs9N + VTA01lFwD3LOMLbQKzA0UQgoysxNLKpUcCwuTs1NyqnkCgnhAgAAAP//4gIAAAD//wMAmBgGAVwA + AAA= + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:14 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D4115450000365E4A194488.1.1.m_7 + NCBI-SID: + - 4A111A7AF3103359_682FSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=4A111A7AF3103359_682FSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:14 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index ed8ea525..504bcfdd 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -23,10 +23,75 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI0tjM3NjI10YQ8EjPzdfoTixIDM1r1ghOaMIyC3Oz01V + MDTWUXAPcs4wttArMDRRCCjKzE0sqlRwLC5OzU3KqeRy5gIAAAD//+ICAAAA//8DALFcilZbAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:08 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE703950000336485DD64DA.1.1.m_7 + NCBI-SID: + - 486799515EC82CA3_8B42SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=486799515EC82CA3_8B42SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:09 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index 18907968..7c53dce1 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,10 +173,272 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:27 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM1NdMGWm4JGfm69QnFiQmZpXrJCcUQTkFufnpioY + WuoouAc5Zxhb6BUYmigEFGXmJhZVKjgWF6fmJuVUcjk7cgEAAAD//+ICAAAA//8DAN6im+lYAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:27 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D4115450000305E56790767.1.1.m_7 + NCBI-SID: + - 826C9E5A17E4ADB1_7CDFSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=826C9E5A17E4ADB1_7CDFSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:27 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTMzNdCKXgkZ+br1CcWJCZmleskJxRBOQW5+emKhha + 6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyOXIBAAAA///iAgAAAP//AwDscSJIVwAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:28 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE7039500004364A070059B.1.1.m_7 + NCBI-SID: + - 68481F9D5D03DD25_1013SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=68481F9D5D03DD25_1013SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:28 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM1NdEGVhpuCRn5uvUJxYkJmaV6yQnFEE5Bbn56Yq + GFrqKLgHOWcYW+gVGJooBBRl5iYWVSo4Fhen5iblVHI5O7o7OzqHhIS4u7s7urs7O4NJLgAAAAD/ + /+ICAAAA//8DAME0cP1sAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:28 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE7039500003364A1A34581.1.1.m_7 + NCBI-SID: + - EA6FB78408A67E0A_914ASID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=EA6FB78408A67E0A_914ASID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:28 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTM2NdMGWm4JGfm69QnFiQmZpXrJCcUQTkFufnpioY + WuoouAc5Zxhb6BUYmigEFGXmJhZVKjgWF6fmJuVUcjmHODtyAQAAAP//4gIAAAD//wMAcnFU/1oA + AAA= + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:28 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE7039500003D64A27E5ACA.1.1.m_7 + NCBI-SID: + - 91856C5EE9E406D1_D611SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=91856C5EE9E406D1_D611SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:29 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index cffc64c4..7332b63b 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,10 +293,207 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:29 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0sTC0NdIGVqYKjgkZ+br1CcWJCZmleskJxRBOQW5+em + Khha6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyObs7urs7uwOxo7tjiLMjmM8FAAAA///i + AgAAAP//AwCUo69uawAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:29 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE7039500004564A42D46EE.1.1.m_7 + NCBI-SID: + - 624243FB0EB1CD0C_18E0SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=624243FB0EB1CD0C_18E0SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:29 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDSz1DAysjC0tTA0NdCKXgkZ+br1CcWJCZmleskJxRBOQW5+emKhha + 6ii4BzlnGFvoFRiaKAQUZeYmFlUqOBYXp+Ym5VRyuXMBAAAA///iAgAAAP//AwDTOp6eVwAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:30 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D8594821500005669211C05D3.1.1.m_7 + NCBI-SID: + - 5F9364470FD1FBCE_1770SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=5F9364470FD1FBCE_1770SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:30 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAByHwQqDQAxE735FPqCKWS3s9lAIOaQnkdJ70bKg0O3K5uTfmzow8+bdB363FgwN + tjfnQ++xNlwdwiOnDDpta/wpfJZiqjlFwHABefLS+WbDHsaypqnsQKoxzd+9YiERFisJvZhON4qc + /l9mO1wdAAAA///iAgAAAP//AwD3jSMmfwAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:30 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D8594821500002569216BD2C6.1.1.m_7 + NCBI-SID: + - 97052FF9E2326DA0_C9EDSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=97052FF9E2326DA0_C9EDSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:30 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index 35c10ee1..4633d1d3 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -28,12 +28,78 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:15 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAAzGsQrCMBAG4L1P8Y8KVXLpYHUQ6uRiCX0BOSXYQJuE3EXw7e3wwXcdH09jqOvI + 2PORLv3JHja4pzVBOAcfBbkk9SEiz0nyzMriQSj+UxfWVH6Q+qoxKMjesHPO0bRt30ILR3mXkBVf + LoGjom+xTuPQDM0fAAD//+ICAAAA//8DADLRQFd8AAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:15 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE7039500002A648B31760E.1.1.m_7 + NCBI-SID: + - 3D7A0A3D6330B050_D6EASID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=3D7A0A3D6330B050_D6EASID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:16 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK - request: body: null headers: @@ -63,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -93,10 +159,76 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:16 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAAzGsQrCMBQF0L1fcUeFKk062DoIsUNdLKFkl6cEG7BJSF4E/95O51ym+6NpRNuK + RvZHce5O8tD1ErewBmSKzvqMmAJb5xGXkONCTNlCINl3+RCH9EMuz+IdQ8grdlprMW/b1+BEPr+S + i4wvJUee0dVY50lVyoxKDWZQW8zGOCpjqj8AAAD//+ICAAAA//8DAEDhNYqQAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:20 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D340D3D8594821500004D6919A9CA0E.1.1.m_7 + NCBI-SID: + - C4147558A5E33542_A99ESID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=C4147558A5E33542_A99ESID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:21 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index 38f23108..8a780bf1 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -28,12 +28,78 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:38 GMT + - Thu, 13 Nov 2025 17:52:21 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAABTEQQrCMBAF0H1P8ZcKrTAVtLoQxIWCWKgXkGlNayCThGRa8PbiW7xT+3hRQ/tD + s6Ej1btt9Q+3IAGZozU+IwblnO0sWIJTnkw1sZo3hg97bxzy3I8s1n3RQYz0JoGwul/ajtYlNLHP + Q7JRsXCy7BV1CXm25+Ja/AAAAP//4gIAAAD//wMAjtT/qIAAAAA= + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:21 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE703950000566494171955.1.1.m_7 + NCBI-SID: + - A8D58A60267386B0_B8AFSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=A8D58A60267386B0_B8AFSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:21 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK - request: body: null headers: @@ -63,7 +129,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:38 GMT + - Thu, 13 Nov 2025 17:52:21 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -93,10 +159,142 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:39 GMT + - Thu, 13 Nov 2025 17:52:22 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAABTEsQrCMBQF0N2vuKNCIk0VBQdBHBQKhRZ3eW2fNZi8lCQt+PfiGc65bp/Fvjga + szUnUx52+h/uwQckmixLwhQypWRnjyW4TCPrkTIP6N8kwk6hah7a2Q8jzd2LvHVfBc++4wiDdXWt + G7NRyJEk9dFOGQtFS5JRKkgQ3YfByoi2vqxuqx8AAAD//+ICAAAA//8DACrfWUyTAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:21 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE703950000306494AD43C3.1.1.m_7 + NCBI-SID: + - EFC3CA0343DAF431_D662SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=EFC3CA0343DAF431_D662SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:22 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '0' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAAzEvQrCMBQG0L1P8Y0KrZAKGh0E6VBBDFSyy21Na6D5Ibkt+PZ6hnNRj5eQ4niS + O3EW9WFf/ZO4BReQKVrjM2JgytkuDmuYmSZTTcTmjeFD3psZeelHcnb+ooMzrjcJApt7ozqxLcGJ + fB6SjYyVkiXPqEu4p7oWrdaNbosfAAAA///iAgAAAP//AwAE2YHOhQAAAA== + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:27 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE70395000037649E02AB12.1.1.m_7 + NCBI-SID: + - D63AB857DE2EADD7_68B7SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=D63AB857DE2EADD7_68B7SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:27 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index 4b218886..9414e041 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml index 28810731..cb28a45e 100644 --- a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml +++ b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml @@ -34,7 +34,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -64,7 +64,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -135,7 +135,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -165,7 +165,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -195,7 +195,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -225,7 +225,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -255,7 +255,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -285,7 +285,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -315,7 +315,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -345,7 +345,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -386,7 +386,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -427,7 +427,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -457,7 +457,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -499,7 +499,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -529,7 +529,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -571,7 +571,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -601,7 +601,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -631,7 +631,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -661,7 +661,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -691,7 +691,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -721,7 +721,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -751,7 +751,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -781,7 +781,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -811,7 +811,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -841,7 +841,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -871,7 +871,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:27 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -901,7 +901,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -931,7 +931,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -961,7 +961,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -991,7 +991,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1021,7 +1021,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1051,7 +1051,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1081,7 +1081,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1111,7 +1111,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1141,7 +1141,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1171,7 +1171,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1201,7 +1201,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1231,7 +1231,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1261,7 +1261,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1291,7 +1291,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1321,7 +1321,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1351,7 +1351,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1381,7 +1381,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1411,7 +1411,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1441,7 +1441,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1471,7 +1471,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1501,7 +1501,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1531,7 +1531,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1561,7 +1561,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1591,7 +1591,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1621,7 +1621,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1651,7 +1651,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1681,7 +1681,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1711,7 +1711,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1741,7 +1741,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1771,7 +1771,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1801,7 +1801,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1831,7 +1831,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1861,7 +1861,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1891,7 +1891,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1921,7 +1921,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1951,7 +1951,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:04 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1981,7 +1981,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2011,7 +2011,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2041,7 +2041,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2071,7 +2071,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2101,7 +2101,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2131,7 +2131,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2161,7 +2161,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2191,7 +2191,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2221,7 +2221,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2251,7 +2251,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2281,7 +2281,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2311,7 +2311,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2341,7 +2341,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2371,7 +2371,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2401,7 +2401,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2431,7 +2431,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2461,7 +2461,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2491,7 +2491,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2521,7 +2521,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2551,7 +2551,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2581,7 +2581,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2611,7 +2611,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2641,7 +2641,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2671,7 +2671,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2701,7 +2701,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2731,7 +2731,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2761,7 +2761,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2791,7 +2791,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2821,7 +2821,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2851,7 +2851,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2881,7 +2881,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2923,7 +2923,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2953,7 +2953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -2983,7 +2983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3013,7 +3013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3043,7 +3043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3073,7 +3073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3103,7 +3103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3133,7 +3133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3163,7 +3163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3193,7 +3193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3223,7 +3223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3253,7 +3253,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:28 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3283,7 +3283,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3313,7 +3313,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3343,7 +3343,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3373,7 +3373,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3403,7 +3403,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3433,7 +3433,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3463,7 +3463,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3493,7 +3493,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3523,7 +3523,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3553,7 +3553,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3583,7 +3583,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3613,7 +3613,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3643,7 +3643,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3673,7 +3673,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3703,7 +3703,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3733,7 +3733,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3763,7 +3763,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3793,7 +3793,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3823,7 +3823,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3853,7 +3853,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3883,7 +3883,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3913,7 +3913,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3943,7 +3943,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -3973,7 +3973,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4003,7 +4003,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4033,7 +4033,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4063,7 +4063,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4093,7 +4093,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4123,7 +4123,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4153,7 +4153,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4183,7 +4183,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:05 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4213,7 +4213,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4243,7 +4243,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4273,7 +4273,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4303,7 +4303,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4345,7 +4345,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4375,7 +4375,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4405,7 +4405,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4435,7 +4435,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4465,7 +4465,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4495,7 +4495,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4525,7 +4525,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4555,7 +4555,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4585,7 +4585,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4615,7 +4615,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4645,7 +4645,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4675,7 +4675,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4705,7 +4705,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4735,7 +4735,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4765,7 +4765,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4795,7 +4795,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4825,7 +4825,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4855,7 +4855,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4885,7 +4885,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4915,7 +4915,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4945,7 +4945,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -4975,7 +4975,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5005,7 +5005,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5035,7 +5035,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5065,7 +5065,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5095,7 +5095,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5125,7 +5125,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5155,7 +5155,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5185,7 +5185,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5215,7 +5215,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:29 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5245,7 +5245,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:30 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -5275,7 +5275,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:30 GMT + - Thu, 13 Nov 2025 17:52:06 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index c96e6f5e..342aa079 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -53,7 +53,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -83,7 +83,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -113,7 +113,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -143,7 +143,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -173,7 +173,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -203,7 +203,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -233,7 +233,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -263,7 +263,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -293,7 +293,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -323,7 +323,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -353,7 +353,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -383,7 +383,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -413,7 +413,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -443,7 +443,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -473,7 +473,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -503,7 +503,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -533,7 +533,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -563,7 +563,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -593,7 +593,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -623,7 +623,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -653,7 +653,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -683,7 +683,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -713,7 +713,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -743,7 +743,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -773,7 +773,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -803,7 +803,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:44 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -833,7 +833,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -863,7 +863,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -893,7 +893,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -923,7 +923,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -953,7 +953,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -983,7 +983,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1013,7 +1013,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1043,7 +1043,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1073,7 +1073,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1103,7 +1103,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1133,7 +1133,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1163,7 +1163,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1193,7 +1193,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1223,7 +1223,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -1253,10 +1253,142 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:31 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAALLzc443AAJDYz1DQytjI2NjQwMTY10Iw9JEwSM/N1+hOLEgMzWvWCE5owjILc7P + TVUwNNZRcA9yzjC20CswNFEIKMrMTSyqVHAsLk7NTcqp5AoJCXF0Dwlxd3R0DnF0dnQHssHAHQmB + pEOQABcAAAD//+ICAAAA//8DAN0Jx5SOAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:30 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D331AE54D4115450000625E59887897.1.1.m_7 + NCBI-SID: + - DC3BF2D7ADB3E543_75DFSID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=DC3BF2D7ADB3E543_75DFSID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:31 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '2' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: !!binary | + H4sIAAAAAAAAAEyKsQrDMAxEd3+FPqAJUZWhdCgIDepUStBe0mJIoK6DPeXvq2TK4zjuuLs95NU5 + SC3ilc5E2PXU7AGxh3tOGeq4zPFX4TMVrzWnCEgn0EEmurSL355lTmNZgWuN6f1dg5mxmimzGAur + 5x09aJvtgG43dTfxIu5BLfwBAAD//+ICAAAA//8DAGgcIEKjAAAA + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - X-RateLimit-Limit,X-RateLimit-Remaining + Cache-Control: + - private + Connection: + - Keep-Alive + Content-Disposition: + - attachment; filename="sequence.fasta" + Content-Security-Policy: + - upgrade-insecure-requests + Content-Type: + - text/plain + Date: + - Thu, 13 Nov 2025 17:52:31 GMT + Keep-Alive: + - timeout=4, max=40 + NCBI-PHID: + - 1D321DE74BE7039500005164A98DC3D8.1.1.m_7 + NCBI-SID: + - 3E4C993E5A9C1D79_D112SID + Referrer-Policy: + - origin-when-cross-origin + Server: + - Finatra + Set-Cookie: + - ncbi_sid=3E4C993E5A9C1D79_D112SID; domain=.nih.gov; path=/; expires=Fri, 13 + Nov 2026 17:52:32 GMT + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-RateLimit-Limit: + - '3' + X-RateLimit-Remaining: + - '1' + X-UA-Compatible: + - IE=Edge + X-XSS-Protection: + - 1; mode=block + content-encoding: + - gzip + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml index cf94c358..1866079f 100644 --- a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml +++ b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml @@ -23,7 +23,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:45 GMT + - Thu, 13 Nov 2025 17:52:32 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/extras/cassettes/test_to_spdi.yaml b/tests/extras/cassettes/test_to_spdi.yaml index e29411f9..b0961ddc 100644 --- a/tests/extras/cassettes/test_to_spdi.yaml +++ b/tests/extras/cassettes/test_to_spdi.yaml @@ -35,7 +35,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: @@ -65,7 +65,7 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 13 Nov 2025 17:07:33 GMT + - Thu, 13 Nov 2025 17:52:09 GMT Server: - Werkzeug/2.2.3 Python/3.10.12 status: diff --git a/tests/vcr_support.py b/tests/vcr_support.py deleted file mode 100644 index 20badce6..00000000 --- a/tests/vcr_support.py +++ /dev/null @@ -1,13 +0,0 @@ -import os -from pathlib import Path - -import vcr as vcrpy - -test_dir = Path(__file__).parent -test_data_dir = Path(test_dir) / "data" / "cassettes" - -vcr = vcrpy.VCR( - cassette_library_dir=test_data_dir, - record_mode=os.environ.get("VCR_RECORD_MODE", "new_episodes"), - decode_compressed_response=True, -) From 26eeba3e99f065e2db331b48d62f56e9a6647eef Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 18 Nov 2025 12:39:53 -0500 Subject: [PATCH 26/41] Reset casettes for RLE tests after merge from main --- tests/cassettes/test_normalize_allele.yaml | 12 + .../cassettes/test_normalize_clinvar_rle.yaml | 1232 ++--------------- .../cassettes/test_annotate_vcf_rle.yaml | 396 +----- .../cassettes/test_reference_allele_rle.yaml | 66 +- 4 files changed, 166 insertions(+), 1540 deletions(-) diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index a27c8c08..c2735554 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -273,4 +273,16 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml index 3bf441ba..f17cb16f 100644 --- a/tests/cassettes/test_normalize_clinvar_rle.yaml +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -1,1681 +1,673 @@ interactions: - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 response: body: string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 response: body: string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 response: body: string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 response: body: string: ATAA - headers: - Connection: - - close - Content-Length: - - '4' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 response: body: string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 response: body: string: ATA - headers: - Connection: - - close - Content-Length: - - '3' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 response: body: string: AATAAATA - headers: - Connection: - - close - Content-Length: - - '8' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 response: body: string: TCC - headers: - Connection: - - close - Content-Length: - - '3' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 response: body: string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 response: body: string: TCCT - headers: - Connection: - - close - Content-Length: - - '4' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 response: body: string: CTCCTCCT - headers: - Connection: - - close - Content-Length: - - '8' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 response: body: string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:39 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 response: body: string: G - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 response: body: string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: - Connection: - - close - Content-Length: - - '28' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:40 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index 354e88d8..2ba6fd04 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -1,15 +1,7 @@ interactions: - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 response: @@ -26,61 +18,25 @@ interactions: \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 response: body: string: AA - headers: - Connection: - - close - Content-Length: - - '2' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO response: @@ -97,467 +53,187 @@ interactions: \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: - Connection: - - close - Content-Length: - - '976' - Content-Type: - - application/json - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 response: body: string: AA - headers: - Connection: - - close - Content-Length: - - '2' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 response: body: string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 response: body: string: CTTT - headers: - Connection: - - close - Content-Length: - - '4' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 response: body: string: CTTT - headers: - Connection: - - close - Content-Length: - - '4' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 response: body: string: '' - headers: - Connection: - - close - Content-Length: - - '0' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 response: body: string: T - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 response: body: string: C - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 response: body: string: A - headers: - Connection: - - close - Content-Length: - - '1' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:36 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index 9414e041..fa7d4e56 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -1,91 +1,37 @@ interactions: - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 response: body: string: AA - headers: - Connection: - - close - Content-Length: - - '2' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:32 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 response: body: string: AA - headers: - Connection: - - close - Content-Length: - - '2' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:32 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK - request: body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.5 + headers: {} method: GET uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 response: body: string: AA - headers: - Connection: - - close - Content-Length: - - '2' - Content-Type: - - text/plain; charset=utf-8 - Date: - - Thu, 13 Nov 2025 17:52:32 GMT - Server: - - Werkzeug/2.2.3 Python/3.10.12 + headers: {} status: code: 200 message: OK From c8282c24d36f53b0daa412921740150b8569ff98 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 20 Nov 2025 02:44:34 -0500 Subject: [PATCH 27/41] Adding microsatellite RLE cases --- tests/test_vrs_normalize.py | 53 +++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index 5beb5637..0af7a581 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -403,3 +403,56 @@ def test_normalize_clinvar_rle(rest_dataproxy): assert microsatellite_insertion_norm == models.Allele( **clinvar_microsatellite_insertion_normalized ) + + +@pytest.mark.vcr +def test_normalize_microsatellite_counts(rest_dataproxy): + """Test microsatellite deletion, insertion, and no-change + + https://github.com/ga4gh/vrs-python/discussions/592 + """ + inputs = [ + # https://www.ncbi.nlm.nih.gov/clinvar/variation/3038970 + # 21bp repeat subunit, delete 1 copy from 3 reference copies + 8bp right flanking partial copy + { + "hgvs-microsatellite": "NC_000001.11:g.930090TTCCTCTCCTCCTGCCCCACC[2]", + "hgvs-del-ins": "NC_000001.11:g.930132_930152del", + "spdi": "NC_000001.11:930081:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "expected": { + "id": "ga4gh:VA.DqozDL1k644wgQiHgjVp8PODJkDFn2dS", + "type": "Allele", + "digest": "DqozDL1k644wgQiHgjVp8PODJkDFn2dS", + "location": { + "id": "ga4gh:SL.Z2axmOUY_oy7Sy26jzOduCprU3WIKzAf", + "type": "SequenceLocation", + "digest": "Z2axmOUY_oy7Sy26jzOduCprU3WIKzAf", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 930081, + "end": 930152, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 50, + "sequence": "GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "repeatSubunitLength": 21, + }, + }, + }, + # Same as above, but insertion of 1 copy + # { + # "hgvs-microsatellite": "NC_000001.11:g.930090TTCCTCTCCTCCTGCCCCACC[4]", + # "hgvs-del-ins": "", + # "spdi": "", + # }, + # TODO lookup source in clinvar + # "NC_000001.11:g.930139CCT[1]", + # TODO lookup source in clinvar + # "NC_000001.11:g.930212AAG[1]", + ] + inp = inputs[0] + + inp_normalized = normalize(inp["hgvs-del-ins"], rest_dataproxy, rle_seq_limit=0) + assert inp_normalized == inp["expected"] From 97a583c21b64cd8c354ec76eb4e53cfc75cd7e7d Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Thu, 20 Nov 2025 16:22:11 -0500 Subject: [PATCH 28/41] Make (incorrect) changes to normalize same-as-ref RLE variants --- src/ga4gh/vrs/normalize.py | 159 ++++++++++++++++++++++++------------- 1 file changed, 106 insertions(+), 53 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index 7267aa96..a249feaf 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -123,100 +123,78 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): return input_allele ival = (start.value, end.value) + start_pos_type = start.pos_type + end_pos_type = end.pos_type alleles = ( (None, input_allele.state.sequence.root) if input_allele.state.sequence else (None, "") ) - # Trim common flanking sequence from Allele sequences. - try: - trim_ival, trim_alleles = _normalize( - ref_seq, ival, alleles, mode=None, trim=True - ) - except ValueError as e: - # bioutils _normalize raises ValueError for reference alleles when in trim=True. - # But verify this is actually a reference allele before treating it as such. - ref_at_location = ref_seq[start.value : end.value] - alt_seq = alleles[1] - if ref_at_location == alt_seq: - # Return RLE with length and repeatSubunitLength both set to ref (and alt) length - new_allele = pydantic_copy(input_allele) - return _define_rle_allele( - new_allele, - length=len(ref_at_location), - repeat_subunit_length=len(ref_at_location), - rle_seq_limit=rle_seq_limit, - extended_alt_seq=ref_at_location, - ) - # Re-raise if this is a different ValueError (shouldn't happen with valid input and assuming bioutils hasn't changed behavior) - msg = f"Unexpected bioutils trim error for non reference allele: ref='{ref_at_location}', alt='{alt_seq}'" - raise ValueError(msg) from e + # Phase 1: trim shared flanking sequence + trim_ival, trim_alleles = _trim_for_normalization( + ref_seq, ival, alleles, start, end + ) trim_ref_seq = ref_seq[trim_ival[0] : trim_ival[1]] trim_alt_seq = trim_alleles[1] len_trimmed_ref = len(trim_ref_seq) len_trimmed_alt = len(trim_alt_seq) + seed_length = len_trimmed_ref if len_trimmed_ref else len_trimmed_alt + identity_case = len_trimmed_ref and len_trimmed_alt and trim_ref_seq == trim_alt_seq new_allele = pydantic_copy(input_allele) - if len_trimmed_ref and len_trimmed_alt: - new_allele.location.start = _get_new_allele_location_pos( - trim_ival[0], start.pos_type - ) - new_allele.location.end = _get_new_allele_location_pos( - trim_ival[1], end.pos_type - ) + # Substitution: both sides non-empty and different after trim. + # 2.b + if len_trimmed_ref and len_trimmed_alt and not identity_case: + _set_location_from_interval(new_allele, trim_ival, start_pos_type, end_pos_type) new_allele.state.sequence = models.sequenceString(trim_alleles[1]) return new_allele - seed_length = len_trimmed_ref if len_trimmed_ref else len_trimmed_alt - # Determine bounds of ambiguity + # Phase 2: expand ambiguity + # 3 new_ival, new_alleles = _normalize( - ref_seq, trim_ival, (None, trim_alleles[1]), mode=NormalizationMode.EXPAND + ref_seq, + trim_ival, + (None, trim_alleles[1]), + mode=NormalizationMode.EXPAND, + trim=not identity_case, # bioutils cannot trim identical alleles ) - new_allele.location.start = _get_new_allele_location_pos( - new_ival[0], start.pos_type - ) - new_allele.location.end = _get_new_allele_location_pos(new_ival[1], end.pos_type) - + # 4 extended_ref_seq = ref_seq[new_ival[0] : new_ival[1]] extended_alt_seq = new_alleles[1] + len_extended_alt = len(extended_alt_seq) + len_extended_ref = len(extended_ref_seq) + # 5.a if not extended_ref_seq: - # If the reference sequence is empty this is an unambiguous insertion. - # Return a new Allele with the trimmed alternate sequence as a Literal - # Sequence Expression + _set_location_from_interval(new_allele, new_ival, start_pos_type, end_pos_type) new_allele.state = models.LiteralSequenceExpression( sequence=models.sequenceString(extended_alt_seq) ) return new_allele - # Otherwise, determine if this is reference-derived (an RLE allele). - len_extended_alt = len(extended_alt_seq) - len_extended_ref = len(extended_ref_seq) - + # 5.b if len_extended_alt < len_extended_ref: - # If this is a deletion, it is reference-derived + _set_location_from_interval(new_allele, new_ival, start_pos_type, end_pos_type) return _define_rle_allele( new_allele, len_extended_alt, seed_length, rle_seq_limit, extended_alt_seq ) + # 5.c if len_extended_alt > len_extended_ref: - # If this is an insertion, it may or may not be reference-derived. - # - # Determine the greatest factor `d` of the `seed length` such that `d` - # is less than or equal to the length of the modified `reference sequence`, - # and there exists a subsequence of length `d` derived from the modified - # `reference sequence` that can be circularly expanded to recreate - # the modified `alternate sequence`. factors = _factor_gen(seed_length) for cycle_length in factors: if cycle_length > len_extended_ref: continue cycle_start = len_extended_ref - cycle_length if _is_valid_cycle(cycle_start, extended_ref_seq, extended_alt_seq): + _set_location_from_interval( + new_allele, new_ival, start_pos_type, end_pos_type + ) + # 5.c.2 return _define_rle_allele( new_allele, len_extended_alt, @@ -224,13 +202,75 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): rle_seq_limit, extended_alt_seq, ) + # 5.c.3 + _set_location_from_interval(new_allele, new_ival, start_pos_type, end_pos_type) + new_allele.state = models.LiteralSequenceExpression( + sequence=models.sequenceString(extended_alt_seq) + ) + return new_allele + + # 5.d identity (lengths equal and sequences match) + if ( + len_extended_alt == len_extended_ref + and extended_alt_seq == extended_ref_seq + and seed_length + ): + cycle_length = _smallest_cycle_length(extended_ref_seq) + + # EXPAND moved and found a smaller repeat unit + if new_ival != trim_ival and cycle_length and cycle_length < seed_length: + _set_location_from_interval( + new_allele, new_ival, start_pos_type, end_pos_type + ) + return _define_rle_allele( + new_allele, + len_extended_alt, + cycle_length, + rle_seq_limit, + extended_alt_seq, + ) + + # EXPAND stayed put or no smaller unit; keep original span/seed + _set_location_from_interval(new_allele, trim_ival, start_pos_type, end_pos_type) + return _define_rle_allele( + new_allele, seed_length, seed_length, rle_seq_limit, trim_alt_seq + ) + _set_location_from_interval(new_allele, new_ival, start_pos_type, end_pos_type) new_allele.state = models.LiteralSequenceExpression( sequence=models.sequenceString(extended_alt_seq) ) return new_allele +def _trim_for_normalization(ref_seq, ival, alleles, start, end): + """Trim common prefix and suffix from the intervals. + + Allow reference-identity alleles to fall through by returning the original ival and sequence. + """ + try: + trim_ival, trim_alleles = _normalize( + ref_seq, ival, alleles, mode=None, trim=True + ) + except ValueError as e: + ref_at_location = ref_seq[start.value : end.value] + alt_seq = alleles[1] + if ref_at_location == alt_seq: + return (ival, (None, ref_at_location)) + msg = ( + "Unexpected bioutils trim error for non reference allele: " + f"ref='{ref_at_location}', alt='{alt_seq}'" + ) + raise ValueError(msg) from e + + return trim_ival, trim_alleles + + +def _set_location_from_interval(allele, ival, start_pos_type, end_pos_type): + allele.location.start = _get_new_allele_location_pos(ival[0], start_pos_type) + allele.location.end = _get_new_allele_location_pos(ival[1], end_pos_type) + + def denormalize_reference_length_expression( ref_seq: str, repeat_subunit_length: int, @@ -293,6 +333,19 @@ def _is_valid_cycle(template_start, template, target): return True +def _smallest_cycle_length(seq: str) -> int: + """Return the smallest cycle length that can generate `seq` (partial final copy allowed).""" + if not seq: + return 0 + n = len(seq) + for cycle_length in range(1, n + 1): + pattern = seq[:cycle_length] + repeat_count, remainder = divmod(n, cycle_length) + if pattern * repeat_count + pattern[:remainder] == seq: + return cycle_length + return n + + # TODO _normalize_genotype? From 6a442c9b0b61bdea965e2bd3bdf41d4445767ddd Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Wed, 26 Nov 2025 16:21:01 -0500 Subject: [PATCH 29/41] Do not normalize same-as-ref. Further refactoring and documentation in _normalize_allele. More tests --- src/ga4gh/vrs/normalize.py | 100 +- .../test_data_proxies[rest_dataproxy].yaml | 768 + tests/cassettes/test_normalize_allele.yaml | 3432 ++ .../cassettes/test_normalize_clinvar_rle.yaml | 8064 +++ tests/cassettes/test_vcrtest.yaml | 144 + .../test_annotate_vcf_grch37_attrs.yaml | 6720 +++ .../test_annotate_vcf_grch38_attrs.yaml | 7200 +++ ...st_annotate_vcf_grch38_attrs_altsonly.yaml | 7200 +++ .../test_annotate_vcf_grch38_noattrs.yaml | 7200 +++ .../test_annotate_vcf_pickle_only.yaml | 7200 +++ .../cassettes/test_annotate_vcf_rle.yaml | 2856 + .../cassettes/test_annotate_vcf_vcf_only.yaml | 7200 +++ tests/extras/cassettes/test_from_beacon.yaml | 1166 + tests/extras/cassettes/test_from_gnomad.yaml | 15078 +++++ tests/extras/cassettes/test_from_hgvs.yaml | 1958 + .../test_get_vrs_object_invalid_input.yaml | 984 + ...NC_000007.14:g.55181220del-expected2].yaml | 2016 + ...g.55181230_55181231insGGCT-expected3].yaml | 1890 + ...NC_000007.14:g.55181320A>T-expected1].yaml | 1491 + ...NC_000013.11:g.32316467dup-expected5].yaml | 2016 + ....11:g.32331093_32331094dup-expected4].yaml | 6048 ++ ...s[NC_000013.11:g.32936732=-expected0].yaml | 816 + ....10:g.289464_289465insCACA-expected8].yaml | 3024 + ...0019.10:g.289485_289500del-expected9].yaml | 3654 ++ ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 1722 + ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 2100 + ...alize_microsatellite_counts[deletion].yaml | 8784 +++ ...alize_microsatellite_counts[identity].yaml | 314 + ...lize_microsatellite_counts[insertion].yaml | 3278 ++ .../cassettes/test_reference_allele_rle.yaml | 1352 + .../test_rle_round_trip_gnomad_spdi.yaml | 47696 ++++++++++++++++ .../extras/cassettes/test_rle_seq_limit.yaml | 11382 ++++ .../test_to_hgvs_iri_ref_keyerror.yaml | 252 + tests/extras/cassettes/test_to_spdi.yaml | 792 + tests/extras/test_allele_translator.py | 113 + tests/test_vrs_normalize.py | 53 - 36 files changed, 175958 insertions(+), 105 deletions(-) create mode 100644 tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml create mode 100644 tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml create mode 100644 tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index a249feaf..3a033838 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -83,7 +83,7 @@ def _get_new_allele_location_pos( return val -def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): +def _normalize_allele(input_allele: models.Allele, data_proxy, rle_seq_limit=50): """Normalize Allele using "fully-justified" normalization adapted from NCBI's VOCA. Fully-justified normalization expands such ambiguous representation over the entire region of ambiguity, resulting in an unambiguous representation that may be @@ -93,16 +93,29 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): the `allele.location.sequenceReference`. If a `SequenceReference` is not provided, the allele will be returned as is with no normalization. + Does not attempt to normalize Alleles with definite ranges or non-LiteralSequenceExpression + states and will instead return the `input_allele`. + + If attempting to re-normalize a ReferenceLengthExpression allele, + use denormalize_reference_length_expression to construct a LiteralSequenceExpression + allele and then call normalize() on that LiteralSequenceExpression allele. + + See: https://vrs.ga4gh.org/en/2.0/conventions/normalization.html#literalsequenceexpression-alleles + :param input_allele: Input VRS Allele object :param data_proxy: SeqRepo dataproxy :param rle_seq_limit: If RLE is set as the new state, set the limit for the length of the `sequence`. To exclude `sequence` from the response, set to 0. For no limit, set to `None`. - - Does not attempt to normalize Alleles with definite ranges and will instead return the - `input_allele` """ + # Algorithm applies to LiteralSequenceExpression alleles only; other states are returned unchanged + if not isinstance(input_allele.state, models.LiteralSequenceExpression): + _logger.warning( + "`input_allele.state` was not a LiteralSequenceExpression, returning `input_allele` with no normalization." + ) + return input_allele + if isinstance(input_allele.location.sequenceReference, models.SequenceReference): alias = f"ga4gh:{input_allele.location.sequenceReference.refgetAccession}" else: @@ -112,7 +125,7 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): ) return input_allele - # Get reference sequence and interval + # 0: Get reference sequence and interval ref_seq = SequenceProxy(data_proxy, alias) start = _get_allele_location_pos(input_allele, use_start=True) if start is None: @@ -125,13 +138,10 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): ival = (start.value, end.value) start_pos_type = start.pos_type end_pos_type = end.pos_type - alleles = ( - (None, input_allele.state.sequence.root) - if input_allele.state.sequence - else (None, "") - ) + alt_seq = input_allele.state.sequence.root if input_allele.state.sequence else "" + alleles = (None, alt_seq) - # Phase 1: trim shared flanking sequence + # 1: trim shared flanking sequence trim_ival, trim_alleles = _trim_for_normalization( ref_seq, ival, alleles, start, end ) @@ -143,26 +153,32 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): seed_length = len_trimmed_ref if len_trimmed_ref else len_trimmed_alt identity_case = len_trimmed_ref and len_trimmed_alt and trim_ref_seq == trim_alt_seq - new_allele = pydantic_copy(input_allele) + new_allele: models.Allele = pydantic_copy(input_allele) - # Substitution: both sides non-empty and different after trim. - # 2.b - if len_trimmed_ref and len_trimmed_alt and not identity_case: + # 2.a: Reference allele (ref==alt after trim): use original span and return RLE + # length = repeatSubunitLength = seed_length (the input sequence length) + if identity_case: + _set_location_from_interval(new_allele, ival, start_pos_type, end_pos_type) + return _define_rle_allele( + new_allele, seed_length, seed_length, rle_seq_limit, alt_seq + ) + + # 2.b: Substitution: both sides non-empty and different after trim. + if len_trimmed_ref and len_trimmed_alt: _set_location_from_interval(new_allele, trim_ival, start_pos_type, end_pos_type) - new_allele.state.sequence = models.sequenceString(trim_alleles[1]) + new_allele.state.sequence = models.sequenceString(trim_alt_seq) return new_allele - # Phase 2: expand ambiguity - # 3 + # 3: Expand ambiguity by rolling left + right new_ival, new_alleles = _normalize( ref_seq, trim_ival, - (None, trim_alleles[1]), + (None, trim_alt_seq), mode=NormalizationMode.EXPAND, - trim=not identity_case, # bioutils cannot trim identical alleles + trim=not identity_case, # bioutils will not trim identical alleles ) - # 4 + # 4: Get the extended sequences extended_ref_seq = ref_seq[new_ival[0] : new_ival[1]] extended_alt_seq = new_alleles[1] len_extended_alt = len(extended_alt_seq) @@ -194,7 +210,7 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): _set_location_from_interval( new_allele, new_ival, start_pos_type, end_pos_type ) - # 5.c.2 + # 5.c.2 / 5.d: reference-derived ambiguous insertion return _define_rle_allele( new_allele, len_extended_alt, @@ -209,33 +225,7 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): ) return new_allele - # 5.d identity (lengths equal and sequences match) - if ( - len_extended_alt == len_extended_ref - and extended_alt_seq == extended_ref_seq - and seed_length - ): - cycle_length = _smallest_cycle_length(extended_ref_seq) - - # EXPAND moved and found a smaller repeat unit - if new_ival != trim_ival and cycle_length and cycle_length < seed_length: - _set_location_from_interval( - new_allele, new_ival, start_pos_type, end_pos_type - ) - return _define_rle_allele( - new_allele, - len_extended_alt, - cycle_length, - rle_seq_limit, - extended_alt_seq, - ) - - # EXPAND stayed put or no smaller unit; keep original span/seed - _set_location_from_interval(new_allele, trim_ival, start_pos_type, end_pos_type) - return _define_rle_allele( - new_allele, seed_length, seed_length, rle_seq_limit, trim_alt_seq - ) - + # 5.e: Otherwise return literal Allele using expanded interval/state (spec step 5 final bullet) _set_location_from_interval(new_allele, new_ival, start_pos_type, end_pos_type) new_allele.state = models.LiteralSequenceExpression( sequence=models.sequenceString(extended_alt_seq) @@ -246,7 +236,11 @@ def _normalize_allele(input_allele, data_proxy, rle_seq_limit=50): def _trim_for_normalization(ref_seq, ival, alleles, start, end): """Trim common prefix and suffix from the intervals. - Allow reference-identity alleles to fall through by returning the original ival and sequence. + Return the trimmed interval and trimmed alleles: + ((trim_start, trim_end), (trim_ref, trim_alt)) + + If the alleles are the same, return the original interval and alleles. + The first allele (ref) will be populated by bioutils. """ try: trim_ival, trim_alleles = _normalize( @@ -256,7 +250,8 @@ def _trim_for_normalization(ref_seq, ival, alleles, start, end): ref_at_location = ref_seq[start.value : end.value] alt_seq = alleles[1] if ref_at_location == alt_seq: - return (ival, (None, ref_at_location)) + # return (ival, (None, ref_at_location)) + return ival, alleles msg = ( "Unexpected bioutils trim error for non reference allele: " f"ref='{ref_at_location}', alt='{alt_seq}'" @@ -370,7 +365,8 @@ def normalize(vo, data_proxy: _DataProxy | None = None, **kwargs): :param data_proxy: GA4GH sequence dataproxy instance, if needed :keyword rle_seq_limit: If RLE is set as the new state, set the limit for the length of the `sequence`. To exclude `state.sequence`, set to 0. - :return: normalized object + :return: normalized object, or unmodified input object if the normalization algorithm + does not provide normalization steps for the given type. :raise TypeError: if given object isn't a pydantic.BaseModel """ if not is_pydantic_instance(vo): diff --git a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml index 93fd4a08..a480950b 100644 --- a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml +++ b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml @@ -1,4 +1,772 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n + \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n + \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n + \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 + response: + body: + string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index c2735554..2d92d5c5 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -285,4 +285,3436 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV + response: + body: + string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n + \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n + \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n + \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n + \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n + \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n + \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n + \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n + \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n + \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n + \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n + \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP + response: + body: + string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n + \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n + \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n + \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n + \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n + \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n + \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n + \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n + \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n + \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n + \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n + \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 + response: + body: + string: TA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 + response: + body: + string: CAGCA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml index f17cb16f..041f2203 100644 --- a/tests/cassettes/test_normalize_clinvar_rle.yaml +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -671,4 +671,8068 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 + response: + body: + string: ATAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 + response: + body: + string: ATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 + response: + body: + string: AATAAATA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 + response: + body: + string: TCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 + response: + body: + string: TCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 + response: + body: + string: CTCCTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 + response: + body: + string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/cassettes/test_vcrtest.yaml b/tests/cassettes/test_vcrtest.yaml index 6bb5fd47..a0bf4808 100644 --- a/tests/cassettes/test_vcrtest.yaml +++ b/tests/cassettes/test_vcrtest.yaml @@ -1,4 +1,148 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 + response: + body: + string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml index be51c7b6..7e28b1ab 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml @@ -559,4 +559,6724 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX + response: + body: + string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n + \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n + \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n + \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n + \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n + \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n + \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n + \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n + \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 59128983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml index 48f1f0db..58440680 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml @@ -599,4 +599,7204 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml index 48f1f0db..58440680 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml @@ -599,4 +599,7204 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index 48f1f0db..58440680 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -599,4 +599,7204 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml index 48f1f0db..58440680 100644 --- a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml @@ -599,4 +599,7204 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index 2ba6fd04..29922a83 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -237,4 +237,2860 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 + response: + body: + string: CTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml index 48f1f0db..58440680 100644 --- a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml @@ -599,4 +599,7204 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 + response: + body: + string: AAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 + response: + body: + string: AAAAAAAAAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 + response: + body: + string: ACT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_from_beacon.yaml b/tests/extras/cassettes/test_from_beacon.yaml index e04892cc..d9857953 100644 --- a/tests/extras/cassettes/test_from_beacon.yaml +++ b/tests/extras/cassettes/test_from_beacon.yaml @@ -1,4 +1,1170 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_from_gnomad.yaml b/tests/extras/cassettes/test_from_gnomad.yaml index 1509ab55..b818953b 100644 --- a/tests/extras/cassettes/test_from_gnomad.yaml +++ b/tests/extras/cassettes/test_from_gnomad.yaml @@ -650,4 +650,15082 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 + response: + body: + string: AC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n + \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n + \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n + \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n + \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n + \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n + \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n + \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n + \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n + \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n + \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n + \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n + \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 + response: + body: + string: GTTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 + response: + body: + string: TTGWCACATGA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 + response: + body: + string: TTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 + response: + body: + string: TTGWCACATGATTG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 + response: + body: + string: NNNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 + response: + body: + string: NNNNNNNNNNNNNNN + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_from_hgvs.yaml b/tests/extras/cassettes/test_from_hgvs.yaml index ed06582a..6ee8ef22 100644 --- a/tests/extras/cassettes/test_from_hgvs.yaml +++ b/tests/extras/cassettes/test_from_hgvs.yaml @@ -1,4 +1,1962 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n + \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n + \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n + \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n + \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n + \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n + \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n + \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n + \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n + \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n + \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n + \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n + \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n + \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n + \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n + \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n + \ \"length\": 16569\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 + response: + body: + string: GT + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml index 11a2ee4b..0c3a0a9e 100644 --- a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml +++ b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml @@ -1,4 +1,988 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index 01a253d4..1afca2d8 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -90,6 +90,2022 @@ interactions: TGGAAGGGGTCCATGTGCCCC + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + TGGAAGGGGTCCATGTGCCCC + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index dbf9fef6..deb7220e 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -84,6 +84,1896 @@ interactions: GGTC + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + CCATGTGCCCCTCCTTCTGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + GGTC + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index 3c14c730..352f12a6 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -65,6 +65,1497 @@ interactions: AACCCCCACGTGTGCCGCCTG + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n + \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n + \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n + \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n + \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n + \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n + \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n + \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n + \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n + \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n + \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n + \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 + Primary Assembly + + AACCCCCACGTGTGCCGCCTG + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index 7a529525..7c58306e 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -90,6 +90,2022 @@ interactions: ATTGGATCCAAAGAGAGGCCA + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + ATTGGATCCAAAGAGAGGCCA + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index e61ad59e..917caa0e 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -282,6 +282,6054 @@ interactions: TT + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 + response: + body: + string: TT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 + response: + body: + string: TTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + T + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TT + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index bded6051..d2816bee 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -24,6 +24,822 @@ interactions: C + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT + response: + body: + string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n + \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n + \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n + \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n + \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n + \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n + \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n + \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n + \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n + \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n + \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n + \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n + \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 + response: + body: + string: CC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 + response: + body: + string: CCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + C + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index 3cf20e71..222f03ba 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -138,6 +138,3030 @@ interactions: CTCA + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 + response: + body: + string: CA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CA + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CAGCACTTTGGGAGGCCGAGGC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CTCA + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index 96e65209..e7b30831 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -168,6 +168,3660 @@ interactions: CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 + response: + body: + string: GCGGGCAGATCACGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 + response: + body: + string: CGAG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 + response: + body: + string: CGAGGCGGGCAGATCACGAGG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 + Primary Assembly + + CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index 44352fa1..07a1705c 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -76,6 +76,1728 @@ interactions: ATGAACTCAATGTTCAGGATT + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + A + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n + \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n + \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n + \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n + \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory + subunit 12B (PPP1R12B), transcript variant 8, mRNA + + ATGAACTCAATGTTCAGGATT + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index 20c3a261..eec3e2e9 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -94,6 +94,2106 @@ interactions: G + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + G + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg + response: + body: + string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n + \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n + \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n + \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n + \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n + \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel + subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA + + GTTCTG + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, + KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA + + G + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml b/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml new file mode 100644 index 00000000..be9128e4 --- /dev/null +++ b/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml @@ -0,0 +1,8784 @@ +interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 + response: + body: + string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +version: 1 diff --git a/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml b/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml new file mode 100644 index 00000000..4972332e --- /dev/null +++ b/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml @@ -0,0 +1,314 @@ +interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 + response: + body: + string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC + headers: {} + status: + code: 200 + message: OK +version: 1 diff --git a/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml b/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml new file mode 100644 index 00000000..8c75949f --- /dev/null +++ b/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml @@ -0,0 +1,3278 @@ +interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +version: 1 diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index fa7d4e56..c4ac36ed 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -1,4 +1,1356 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 + response: + body: + string: AA + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml index 8dad6e26..33b32a0f 100644 --- a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml +++ b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml @@ -2167,4 +2167,47700 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 + response: + body: + string: CCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 + response: + body: + string: CT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 + response: + body: + string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n + \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n + \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n + \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n + \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n + \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n + \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n + \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n + \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n + \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n + \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 + response: + body: + string: CTCCT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 + response: + body: + string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 + response: + body: + string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 + response: + body: + string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n + \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n + \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n + \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n + \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n + \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n + \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n + \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n + \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n + \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n + \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n + \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n + \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 + response: + body: + string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 + response: + body: + string: GTGCCCG + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 + response: + body: + string: AAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 + response: + body: + string: AAAAAAAAA + headers: {} + status: + code: 200 + message: OK version: 1 diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index d7046ab8..9530f999 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -536,6 +536,11388 @@ interactions: GT + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 + response: + body: + string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 + response: + body: + string: A + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 + response: + body: + string: T + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 + response: + body: + string: G + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT + + + ' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com + response: + body: + string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 + Primary Assembly + + TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT + + GT + + ' headers: {} status: diff --git a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml index 13bba609..24b86329 100644 --- a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml +++ b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml @@ -1,4 +1,256 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc + response: + body: + string: '' + headers: {} + status: + code: 404 + message: NOT FOUND - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_to_spdi.yaml b/tests/extras/cassettes/test_to_spdi.yaml index 46106902..a073ae72 100644 --- a/tests/extras/cassettes/test_to_spdi.yaml +++ b/tests/extras/cassettes/test_to_spdi.yaml @@ -1,4 +1,796 @@ interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 + response: + body: + string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n + \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n + \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n + \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n + \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n + \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n + \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n + \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n + \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n + \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n + \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n + \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n + \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 + response: + body: + string: C + headers: {} + status: + code: 200 + message: OK - request: body: null headers: {} diff --git a/tests/extras/test_allele_translator.py b/tests/extras/test_allele_translator.py index fd938d3e..24c461e8 100644 --- a/tests/extras/test_allele_translator.py +++ b/tests/extras/test_allele_translator.py @@ -860,6 +860,119 @@ def test_reference_allele_rle(tlr): assert to_spdi[0] == spdi_ref_allele +# Microsatellite test cases for 21bp repeat unit +# https://github.com/ga4gh/vrs-python/discussions/592 +# Tests deletion, insertion, and identity (no-change) variations +# Deletion/insertion: VOCA normalize to 930081-930152 with repeatSubunitLength=21 +# Identity: Keep input coordinates 930089-930152 with repeatSubunitLength=63 (no VOCA normalization) +microsatellite_21bp_cases = [ + { + "id": "deletion", + "description": "Delete 1 copy from 3 copies (3->2 copies)", + "hgvs": "NC_000001.11:g.930132_930152del", + "spdi": "NC_000001.11:930081:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "expected": { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 930081, + "end": 930152, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 50, + "sequence": "GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "repeatSubunitLength": 21, + }, + }, + }, + { + "id": "insertion", + "description": "Insert 1 copy to 3 copies (3->4 copies)", + "hgvs": "NC_000001.11:g.930152_930153insTTCCTCTCCTCCTGCCCCACC", + "spdi": "NC_000001.11:930081:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "expected": { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 930081, + "end": 930152, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 92, + "sequence": "GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "repeatSubunitLength": 21, + }, + }, + }, + { + "id": "identity", + "description": "No change, 3 copies (same-as-ref does NOT do VOCA normalization)", + "hgvs": "NC_000001.11:g.930090_930152=", + "spdi": "NC_000001.11:930089:TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC:TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "expected": { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 930089, + "end": 930152, + }, + "state": { + "type": "ReferenceLengthExpression", + "length": 63, + "sequence": "TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", + "repeatSubunitLength": 63, + }, + }, + }, +] + + +@pytest.mark.parametrize("case", microsatellite_21bp_cases, ids=lambda c: c["id"]) +@pytest.mark.vcr +def test_normalize_microsatellite_counts(tlr, case): + """Test microsatellite deletion, insertion, and identity normalization behavior + + Tests three variations of a 21bp microsatellite: + - Deletion and insertion: Apply VOCA normalization (roll left, find repeat unit) + - Identity (same-as-ref): Do NOT apply VOCA normalization, use input coordinates + + https://github.com/ga4gh/vrs-python/discussions/592 + + The microsatellite has a 21bp repeat unit when fully normalized. + For deletion/insertion: normalize to 930081-930152 with repeatSubunitLength=21 + For identity: keep input coordinates (930089-930152) with repeatSubunitLength=63 + """ + # Test HGVS format + allele_hgvs = tlr.translate_from( + case["hgvs"], "hgvs", normalize=True, rle_seq_limit=100 + ) + assert allele_hgvs.model_dump(exclude_none=True) == case["expected"], ( + f"HGVS failed: {case['description']}" + ) + + # Test SPDI format + allele_spdi = tlr.translate_from( + case["spdi"], "spdi", normalize=True, rle_seq_limit=100 + ) + assert allele_spdi.model_dump(exclude_none=True) == case["expected"], ( + f"SPDI failed: {case['description']}" + ) + + # TODO: Readd these tests # @pytest.mark.vcr # def test_errors(tlr): diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index 0af7a581..5beb5637 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -403,56 +403,3 @@ def test_normalize_clinvar_rle(rest_dataproxy): assert microsatellite_insertion_norm == models.Allele( **clinvar_microsatellite_insertion_normalized ) - - -@pytest.mark.vcr -def test_normalize_microsatellite_counts(rest_dataproxy): - """Test microsatellite deletion, insertion, and no-change - - https://github.com/ga4gh/vrs-python/discussions/592 - """ - inputs = [ - # https://www.ncbi.nlm.nih.gov/clinvar/variation/3038970 - # 21bp repeat subunit, delete 1 copy from 3 reference copies + 8bp right flanking partial copy - { - "hgvs-microsatellite": "NC_000001.11:g.930090TTCCTCTCCTCCTGCCCCACC[2]", - "hgvs-del-ins": "NC_000001.11:g.930132_930152del", - "spdi": "NC_000001.11:930081:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC:GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", - "expected": { - "id": "ga4gh:VA.DqozDL1k644wgQiHgjVp8PODJkDFn2dS", - "type": "Allele", - "digest": "DqozDL1k644wgQiHgjVp8PODJkDFn2dS", - "location": { - "id": "ga4gh:SL.Z2axmOUY_oy7Sy26jzOduCprU3WIKzAf", - "type": "SequenceLocation", - "digest": "Z2axmOUY_oy7Sy26jzOduCprU3WIKzAf", - "sequenceReference": { - "type": "SequenceReference", - "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", - }, - "start": 930081, - "end": 930152, - }, - "state": { - "type": "ReferenceLengthExpression", - "length": 50, - "sequence": "GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC", - "repeatSubunitLength": 21, - }, - }, - }, - # Same as above, but insertion of 1 copy - # { - # "hgvs-microsatellite": "NC_000001.11:g.930090TTCCTCTCCTCCTGCCCCACC[4]", - # "hgvs-del-ins": "", - # "spdi": "", - # }, - # TODO lookup source in clinvar - # "NC_000001.11:g.930139CCT[1]", - # TODO lookup source in clinvar - # "NC_000001.11:g.930212AAG[1]", - ] - inp = inputs[0] - - inp_normalized = normalize(inp["hgvs-del-ins"], rest_dataproxy, rle_seq_limit=0) - assert inp_normalized == inp["expected"] From 698265441ec9098eef0a6c6030842b77f4ae6a30 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 2 Dec 2025 14:33:02 -0500 Subject: [PATCH 30/41] Update _normalize_allele to accept zero bp ref alleles. Expand test cases in test_vrs_normalize to include more condition coverage from the spec. --- src/ga4gh/vrs/normalize.py | 2 +- tests/test_vrs_normalize.py | 95 ++++++++++++++++++++++++++++++++++++- 2 files changed, 94 insertions(+), 3 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index 3a033838..253c45b8 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -151,7 +151,7 @@ def _normalize_allele(input_allele: models.Allele, data_proxy, rle_seq_limit=50) len_trimmed_ref = len(trim_ref_seq) len_trimmed_alt = len(trim_alt_seq) seed_length = len_trimmed_ref if len_trimmed_ref else len_trimmed_alt - identity_case = len_trimmed_ref and len_trimmed_alt and trim_ref_seq == trim_alt_seq + identity_case = trim_ref_seq == trim_alt_seq new_allele: models.Allele = pydantic_copy(input_allele) diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index 5beb5637..18a6ec90 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -36,7 +36,7 @@ "type": "Allele", } -# Ambiguous indefinite outer 2 bp deletion. Should become RLE. +# Ambiguous indefinite-outer 2 bp deletion. Should become RLE. allele_dict2 = { "type": "Allele", "location": { @@ -189,6 +189,82 @@ }, } +# Multi-base substitution (step 2.b). ClinVar 1530016 +# HGVS: NC_000001.11:g.939146_939147delinsTT +# VCF: 1-939146-GA-TT +# Substitutions remain as LiteralSequenceExpression (both ref and alt non-empty after trim) +clinvar_substitution_2bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 939145, + "end": 939147, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "TT", + }, +} + +clinvar_substitution_normalized_2bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 939145, + "end": 939147, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "TT", + }, +} + +# Unambiguous insertion in a repeat region (step 5.a). +# Insert "CGT" into a poly-A run at chr1:236900409-236900417. +# Terminal bases (C, T) don't match surrounding A's, so no rolling occurs. +# Should remain as LiteralSequenceExpression at the original position. +unambiguous_insertion_in_repeat = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 236900413, + "end": 236900413, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CGT", + }, +} + +unambiguous_insertion_in_repeat_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 236900413, + "end": 236900413, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CGT", + }, +} + @pytest.mark.vcr def test_normalize_allele(rest_dataproxy): @@ -202,7 +278,7 @@ def test_normalize_allele(rest_dataproxy): assert allele1 != allele2 assert allele2 == models.Allele(**allele_dict2_normalized) - # Definite ranges are not normalized + # Definite ambiguous ranges are not normalized allele3 = models.Allele(**allele_dict3) allele3_after_norm = normalize(allele3, rest_dataproxy) assert allele3_after_norm == allele3 @@ -223,6 +299,20 @@ def test_normalize_allele(rest_dataproxy): allele6_after_norm = normalize(allele6, rest_dataproxy) assert allele6_after_norm == models.Allele(**allele_dict6_normalized) + # Multi-base substitution (step 2.b): both ref and alt non-empty after trim + # Should remain as LiteralSequenceExpression, not converted to RLE + substitution = models.Allele(**clinvar_substitution_2bp) + substitution_norm = normalize(substitution, rest_dataproxy) + assert substitution_norm == models.Allele(**clinvar_substitution_normalized_2bp) + + # Unambiguous insertion in a repeat region (step 5.a) + # Terminal bases don't match context, so no rolling - stays at original position + unambig_ins = models.Allele(**unambiguous_insertion_in_repeat) + unambig_ins_norm = normalize(unambig_ins, rest_dataproxy) + assert unambig_ins_norm == models.Allele( + **unambiguous_insertion_in_repeat_normalized + ) + # Simple deletion. ClinVar 3385321 # SPDI: NC_000001.11:66926:G: @@ -261,6 +351,7 @@ def test_normalize_allele(rest_dataproxy): }, } + # Microsatellite deletion: ClinVar 4286633 # SPDI: NC_000001.11:766399:AATAAATA:AATA clinvar_microsatellite = { From c1bd885de27e0febc57b53680473dc67bb5f0b36 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 2 Dec 2025 15:58:41 -0500 Subject: [PATCH 31/41] Add several more RLE cases testing partial insertion/deletion in middle/end of repeating regions. --- tests/test_vrs_normalize.py | 437 +++++++++++++++++++++++++++++++++++- 1 file changed, 436 insertions(+), 1 deletion(-) diff --git a/tests/test_vrs_normalize.py b/tests/test_vrs_normalize.py index 18a6ec90..83c27cdd 100644 --- a/tests/test_vrs_normalize.py +++ b/tests/test_vrs_normalize.py @@ -314,7 +314,7 @@ def test_normalize_allele(rest_dataproxy): ) -# Simple deletion. ClinVar 3385321 +# Simple deletion from non-repeating region (no trim/rolling involved). ClinVar 3385321 # SPDI: NC_000001.11:66926:G: clinvar_deletion = { "type": "Allele", @@ -494,3 +494,438 @@ def test_normalize_clinvar_rle(rest_dataproxy): assert microsatellite_insertion_norm == models.Allele( **clinvar_microsatellite_insertion_normalized ) + + +############################################################################### +# Partial repeat insertion/deletion edge cases in CCT repeat region +# Region: chr1:1752908-1752936 = CCTCCTCCTCCTCCTCCTCCTCCTCCTC (9 full CCT units + trailing C) +# These tests verify behavior when insertions/deletions don't align with repeat boundaries +############################################################################### +#### MIDDLE INSERTIONS (around position 1752915, in unit 3) #### + +# Insert "CT" (2 bases, < repeat unit) in middle of CCT region +# SPDI: NC_000001.11:1752915::CT +# Reference: CCT CCT C CT CCT ... (positions 1752908-...) +# ^-- insert "CT" at interbase position 1752915 +# Variant: CCT CCT C[CT]CT CCT ... +# The ref "CCT" (3bp) becomes "CCTCT" (5bp), which cycles with period 2 (CT CT C) +partial_repeat_insertion = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752915, + "end": 1752915, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CT", + }, +} + +partial_repeat_insertion_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # Expands to 3 ref bases (1752915-1752918: "CCT"), not the full CCT repeat region, + # because the inserted "CT" creates a 2-base cycle pattern locally + "start": 1752915, + "end": 1752918, + }, + "state": { + "type": "ReferenceLengthExpression", + # ref "CCT" (3 bases) + ins "CT" (2 bases) = "CCTCT" (5 bases), cycles with period 2 + "length": 5, + "repeatSubunitLength": 2, + }, +} + + +# Insert "CCTC" (4 bases, > repeat unit) in middle of CCT region +# SPDI: NC_000001.11:1752915::CCTC +# Reference: CCT CCT C CT CCT CCT ... (positions 1752908-...) +# ^-- insert "CCTC" at interbase position 1752915 (between C at char 1752914 and C at 1752915) +# Variant: CCT CCT C[CCTC]CT CCT ... +# In the variant sequence, the subunit now identified is now CCTC (CCTC CCTC C) +# And the ref "CCTCC" (5bp) becomes "CCTCCCTCC" (9bp, period 4) +middle_ins_4bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752915, + "end": 1752915, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CCTC", + }, +} + +middle_ins_4bp_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # Rolls left to 1752911, expands to 5 ref bases (CCTCC) + "start": 1752911, + "end": 1752916, + }, + "state": { + "type": "ReferenceLengthExpression", + # ref "CCTCC" (5 bases) + ins "CCTC" (4 bases) = 9 bases, cycles with period 4 + "length": 9, + "repeatSubunitLength": 4, + }, +} + +#### TAIL INSERTIONS (at position 1752934, end of unit 9) #### + +# Insert "CT" (2 bases, < repeat unit) at tail of CCT region +# SPDI: NC_000001.11:1752934::CT +# Reference: ...CCT CCT CCT C G A (positions 1752926-1752938) +# ^-- insert "CT" at interbase position 1752934 (after T, before trailing C) +# Variant: ...CCT CCT CCT[CT]C G A +# Result: Stays as LSE - at boundary where next base (C) doesn't continue the CT pattern +# No expansion occurs; output is the unchanged insertion +tail_ins_2bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752934, + "end": 1752934, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CT", + }, +} + +tail_ins_2bp_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # No expansion - stays at original position + "start": 1752934, + "end": 1752934, + }, + "state": { + # Stays as LSE because insertion at boundary doesn't form repeating pattern + "type": "LiteralSequenceExpression", + "sequence": "CT", + }, +} + +# Insert "CCTC" (4 bases, > repeat unit) at tail of CCT region +# SPDI: NC_000001.11:1752934::CCTC +# Reference: ...CCT CCT CCT C G A (positions 1752926-1752938) +# ^-- insert "CCTC" at interbase position 1752934 (after T, before trailing C) +# Variant: ...CCT CCT CCT[CCTC]C G A → ...CCT CCT CCTCCCTC G A +# Left-aligns: ref "T" (1752933-1752934) + ins "CCTC" = "CCCTC" after normalization +# Result: Stays as LSE with sequence "CCCTC" - doesn't form repeating pattern at boundary +tail_ins_4bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752934, + "end": 1752934, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "CCTC", + }, +} + +tail_ins_4bp_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # Rolls left by 1 to include the T at 1752933 + "start": 1752933, + "end": 1752934, + }, + "state": { + # Stays as LSE - ref "T" + ins "CCTC" = "CCCTC" after left-alignment + "type": "LiteralSequenceExpression", + "sequence": "CCCTC", + }, +} + +#### MIDDLE DELETIONS (around positions 1752912-1752916) #### + +# Delete "CTCC" (4 bases, > repeat unit) in middle of CCT region +# SPDI: NC_000001.11:1752912:CTCC: +# Reference: CCT CCT CCT CCT CCT ... (positions 1752908-...) +# C[CTCC]T CCT ... <-- delete positions 1752912-1752916 +# Variant: CCT C T CCT ... → CCTCTCCT... +# Left-aligns to 1752911: ref span becomes "CCTCC" (5 bases) +# Ref "CCTCC" - del "CTCC" = 1 base remaining; CTCC has period 4, so repeatSubunitLength=4 +deletion_spanning_boundary = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752912, + "end": 1752916, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +deletion_spanning_boundary_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # Rolls left by 1 to 1752911; ref span becomes "CCTCC" (5 bases) + # Doesn't expand to full CCT repeat region because deleted "CTCC" has period 4, not 3 + "start": 1752911, + "end": 1752916, + }, + "state": { + "type": "ReferenceLengthExpression", + # ref "CCTCC" (5 bases) - del "CTCC" (4 bases) = 1 base remaining + # repeatSubunitLength=4 reflects the deletion size, not the original CCT repeat + "length": 1, + "repeatSubunitLength": 4, + }, +} + +# Delete "TC" (2 bases, < repeat unit) in middle of CCT region +# SPDI: NC_000001.11:1752913:TC: +# Reference: CCT CCT CCT CCT CCT ... (positions 1752908-...) +# T[TC]CT CCT ... <-- delete positions 1752913-1752915 +# Variant: CCT T CT CCT ... → CCTTCTCCT... +# Left-aligns to 1752912: ref span becomes "CTC" (3 bases) +# Ref "CTC" - del "TC" = 1 base remaining; TC has period 2, so repeatSubunitLength=2 +middle_del_2bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752913, + "end": 1752915, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +middle_del_2bp_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # Rolls left by 1 to 1752912; ref span becomes "CTC" (3 bases) + "start": 1752912, + "end": 1752915, + }, + "state": { + "type": "ReferenceLengthExpression", + # ref "CTC" (3 bases) - del "TC" (2 bases) = 1 base remaining + "length": 1, + "repeatSubunitLength": 2, + }, +} + +#### TAIL DELETIONS (at positions 1752932-1752936) #### + +# Delete "TC" (2 bases, < repeat unit) at tail of CCT region +# SPDI: NC_000001.11:1752934:TC: +# Reference: ...CCT CCT CCT C G A (positions 1752926-1752938) +# T[TC]G A <-- delete positions 1752934-1752936 (T from CCT + trailing C) +# Variant: ...CCT CCT CC G A → ...CCTCCTCCGA +# Left-aligns to 1752933: ref span becomes "TTC" (3 bases, positions 1752933-1752936) +# Ref "TTC" - del "TC" = 1 base remaining; TC has period 2, so repeatSubunitLength=2 +tail_del_2bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752934, + "end": 1752936, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +tail_del_2bp_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # Rolls left by 1 to 1752933; ref span becomes "TTC" (3 bases) + "start": 1752933, + "end": 1752936, + }, + "state": { + "type": "ReferenceLengthExpression", + # ref "TTC" (3 bases) - del "TC" (2 bases) = 1 base remaining + "length": 1, + "repeatSubunitLength": 2, + }, +} + +# Delete "CCTC" (4 bases, > repeat unit) at tail of CCT region +# SPDI: NC_000001.11:1752932:CCTC: +# Reference: ...CCT CCT [CCTC] G A (positions 1752926-1752938) +# ^-- delete positions 1752932-1752936 (CCTC = unit 9 CCT + trailing C) +# Variant: ...CCT CCT G A → ...CCTCCTGA +# Left-aligns: ref span stays at 1752932-1752936 = "CCTC" (4 bases) +# Ref "CCTC" - del "CCTC" = 0 bases remaining; CCTC has period 4, so repeatSubunitLength=4 +tail_del_4bp = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + "start": 1752932, + "end": 1752936, + }, + "state": { + "type": "LiteralSequenceExpression", + "sequence": "", + }, +} + +tail_del_4bp_normalized = { + "type": "Allele", + "location": { + "type": "SequenceLocation", + "sequenceReference": { + "type": "SequenceReference", + "refgetAccession": "SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO", + }, + # No rolling - stays at original position + "start": 1752932, + "end": 1752936, + }, + "state": { + "type": "ReferenceLengthExpression", + # ref "CCTC" (4 bases) - del "CCTC" (4 bases) = 0 bases remaining + "length": 0, + "repeatSubunitLength": 4, + }, +} + + +@pytest.mark.vcr +def test_normalize_partial_rle_del_ins(rest_dataproxy): + """Test normalization of partial repeat insertions/deletions in CCT repeat region. + + Tests insertions and deletions that don't align with the 3-base CCT repeat boundary. + Region: chr1:1752908-1752936 = CCTCCTCCTCCTCCTCCTCCTCCTCCTC + + Cases tested: + - Middle insertions: 2bp and 4bp insertions within the repeat region + - Tail insertions: 2bp and 4bp insertions at the end of the repeat region + - Middle deletions: 2bp and 4bp deletions within the repeat region + - Tail deletions: 2bp and 4bp deletions at the end of the repeat region + """ + # === MIDDLE INSERTIONS === + + # Middle ins 2bp: Insert "CT" at 1752915 (already tested in partial_repeat_insertion) + partial_ins = models.Allele(**partial_repeat_insertion) + partial_ins_norm = normalize(partial_ins, rest_dataproxy, rle_seq_limit=0) + assert partial_ins_norm == models.Allele(**partial_repeat_insertion_normalized) + + # Middle ins 4bp: Insert "CCTC" at 1752915 + # 4-base insertion into 3-base repeat creates period-4 RLE + mid_ins_4 = models.Allele(**middle_ins_4bp) + mid_ins_4_norm = normalize(mid_ins_4, rest_dataproxy, rle_seq_limit=0) + assert mid_ins_4_norm == models.Allele(**middle_ins_4bp_normalized) + + # === TAIL INSERTIONS === + + # Tail ins 2bp: Insert "CT" at 1752934 + # At boundary, stays as LSE (doesn't form repeating pattern) + tail_ins_2 = models.Allele(**tail_ins_2bp) + tail_ins_2_norm = normalize(tail_ins_2, rest_dataproxy, rle_seq_limit=0) + assert tail_ins_2_norm == models.Allele(**tail_ins_2bp_normalized) + + # Tail ins 4bp: Insert "CCTC" at 1752934 + # At boundary, stays as LSE with left-aligned sequence + tail_ins_4 = models.Allele(**tail_ins_4bp) + tail_ins_4_norm = normalize(tail_ins_4, rest_dataproxy, rle_seq_limit=0) + assert tail_ins_4_norm == models.Allele(**tail_ins_4bp_normalized) + + # === MIDDLE DELETIONS === + + # Middle del 4bp: Delete "CTCC" at 1752912-1752916 (already tested in deletion_spanning_boundary) + span_del = models.Allele(**deletion_spanning_boundary) + span_del_norm = normalize(span_del, rest_dataproxy, rle_seq_limit=0) + assert span_del_norm == models.Allele(**deletion_spanning_boundary_normalized) + + # Middle del 2bp: Delete "TC" at 1752913-1752915 + # 2-base deletion creates period-2 RLE + mid_del_2 = models.Allele(**middle_del_2bp) + mid_del_2_norm = normalize(mid_del_2, rest_dataproxy, rle_seq_limit=0) + assert mid_del_2_norm == models.Allele(**middle_del_2bp_normalized) + + # === TAIL DELETIONS === + + # Tail del 2bp: Delete "TC" at 1752934-1752936 + # At boundary, still becomes RLE with period 2 + tail_del_2 = models.Allele(**tail_del_2bp) + tail_del_2_norm = normalize(tail_del_2, rest_dataproxy, rle_seq_limit=0) + assert tail_del_2_norm == models.Allele(**tail_del_2bp_normalized) + + # Tail del 4bp: Delete "CCTC" at 1752932-1752936 + # Complete 4-base deletion, RLE with length=0 + tail_del_4 = models.Allele(**tail_del_4bp) + tail_del_4_norm = normalize(tail_del_4, rest_dataproxy, rle_seq_limit=0) + assert tail_del_4_norm == models.Allele(**tail_del_4bp_normalized) From bce6830ec566f426a0d006b44987ed856be1aaea Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 2 Dec 2025 17:36:03 -0500 Subject: [PATCH 32/41] Reset cassettes --- .../test_data_proxies[rest_dataproxy].yaml | 768 - tests/cassettes/test_normalize_allele.yaml | 3394 +- .../cassettes/test_normalize_clinvar_rle.yaml | 8064 --- .../test_normalize_partial_rle_del_ins.yaml | 170 + tests/cassettes/test_vcrtest.yaml | 144 - .../test_annotate_vcf_grch37_attrs.yaml | 6720 --- .../test_annotate_vcf_grch38_attrs.yaml | 7200 --- ...st_annotate_vcf_grch38_attrs_altsonly.yaml | 7200 --- .../test_annotate_vcf_grch38_noattrs.yaml | 7200 --- .../test_annotate_vcf_pickle_only.yaml | 7200 --- .../cassettes/test_annotate_vcf_rle.yaml | 2856 - .../cassettes/test_annotate_vcf_vcf_only.yaml | 7200 --- tests/extras/cassettes/test_from_beacon.yaml | 1166 - tests/extras/cassettes/test_from_gnomad.yaml | 15078 ----- tests/extras/cassettes/test_from_hgvs.yaml | 1958 - .../test_get_vrs_object_invalid_input.yaml | 984 - ...NC_000007.14:g.55181220del-expected2].yaml | 2016 - ...g.55181230_55181231insGGCT-expected3].yaml | 1890 - ...NC_000007.14:g.55181320A>T-expected1].yaml | 1491 - ...NC_000013.11:g.32316467dup-expected5].yaml | 2016 - ....11:g.32331093_32331094dup-expected4].yaml | 6040 +- ...s[NC_000013.11:g.32936732=-expected0].yaml | 816 - ....10:g.289464_289465insCACA-expected8].yaml | 3024 - ...0019.10:g.289485_289500del-expected9].yaml | 3654 -- ...vs[NM_001331029.1:c.722A>G-expected6].yaml | 1722 - ...hgvs[NM_181798.1:c.1007G>T-expected7].yaml | 2100 - ...alize_microsatellite_counts[deletion].yaml | 8110 --- ...alize_microsatellite_counts[identity].yaml | 288 - ...lize_microsatellite_counts[insertion].yaml | 3024 - .../cassettes/test_reference_allele_rle.yaml | 1352 - .../test_rle_round_trip_gnomad_spdi.yaml | 47696 ---------------- .../extras/cassettes/test_rle_seq_limit.yaml | 11382 ---- .../test_to_hgvs_iri_ref_keyerror.yaml | 252 - tests/extras/cassettes/test_to_spdi.yaml | 792 - 34 files changed, 178 insertions(+), 174789 deletions(-) create mode 100644 tests/cassettes/test_normalize_partial_rle_del_ins.yaml diff --git a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml index a480950b..93fd4a08 100644 --- a/tests/cassettes/test_data_proxies[rest_dataproxy].yaml +++ b/tests/cassettes/test_data_proxies[rest_dataproxy].yaml @@ -1,772 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NM_000551.3 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:11Z\",\n \"aliases\": [\n \"MD5:215137b1973c1a5afcf86be7d999574a\",\n - \ \"NCBI:NM_000551.3\",\n \"refseq:NM_000551.3\",\n \"SEGUID:T12L0p2X5E8DbnL0+SwI4Wc1S6g\",\n - \ \"SHA1:4f5d8bd29d97e44f036e72f4f92c08e167354ba8\",\n \"VMC:GS_v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n - \ \"sha512t24u:v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\",\n \"ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 4560\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_ - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCACGCGCACAGCCTCCGGCCGGCTATTTCCGCGAGCGCGTTCCATCCTCTACCGAGCGCGCGCGAAGACTACGGAGGTCGACTCGGGAGCGCGCACGCAGCTCCGCCCCGCGTCCGACCCGCGGATCCCGCGGCGTCCGGCCCGGGTGGTCTGGATCGCGGAGGGAATGCCCCGGAGGGCGGAGAACTGGGACGAGGCCGAGGTAGGCGCGGAGGAGGCAGGCGTCGAAGAGTACGGCCCTGAAGAAGACGGCGGGGAGGAGTCGGGCGCCGAGGAGTCCGGCCCGGAAGAGTCCGGCCCGGAGGAACTGGGCGCCGAGGAGGAGATGGAGGCCGGGCGGCCGCGGCCCGTGCTGCGCTCGGTGAACTCGCGCGAGCCCTCCCAGGTCATCTTCTGCAATCGCAGTCCGCGCGTCGTGCTGCCCGTATGGCTCAACTTCGACGGCGAGCCGCAGCCCTACCCAACGCTGCCGCCTGGCACGGGCCGCCGCATCCACAGCTACCGAGGTCACCTTTGGCTCTTCAGAGATGCAGGGACACACGATGGGCTTCTGGTTAACCAAACTGAATTATTTGTGCCATCTCTCAATGTTGACGGACAGCCTATTTTTGCCAATATCACACTGCCAGTGTATACTCTGAAAGAGCGATGCCTCCAGGTTGTCCGGAGCCTAGTCAAGCCTGAGAATTACAGGAGACTGGACATCGTCAGGTCGCTCTACGAAGATCTGGAAGACCACCCAAATGTGCAGAAAGACCTGGAGCGGCTGACACAGGAGCGCATTGCACATCAACGGATGGGAGATTGAAGATTTCTGTTGAAACTTACACTGTTTCATCTCAGCTTTTGATGGTACTGATGAGTCTTGATCTAGATACAGGACTGGTTCCTTCCTTAGTTTCAAAGTGTCTCATTCTCAGAGTAAAATAGGCACCATTGCTTAAAAGAAAGTTAACTGACTTCACTAGGCATTGTGATGTTTAGGGGCAAACATCACAAAATGTAATTTAATGCCTGCCCATTAGAGAAGTATTTATCAGGAGAAGGTGGTGGCATTTTTGCTTCCTAGTAAGTCAGGACAGCTTGTATGTAAGGAGGTTTGTATAAGTAATTCAGTGGGAATTGCAGCATATCGTTTAATTTTAAGAAGGCATTGGCATCTGCTTTTAATGGATGTATAATACATCCATTCTACATCCGTAGCGGTTGGTGACTTGTCTGCCTCCTGCTTTGGGAAGACTGAGGCATCCGTGAGGCAGGGACAAGTCTTTCTCCTCTTTGAGACCCCAGTGCCTGCACATCATGAGCCTTCAGTCAGGGTTTGTCAGAGGAACAAACCAGGGGACACTTTGTTAGAAAGTGCTTAGAGGTTCTGCCTCTATTTTTGTTGGGGGGTGGGAGAGGGGACCTTAAAATGTGTACAGTGAACAAATGTCTTAAAGGGAATCATTTTTGTAGGAAGCATTTTTTATAATTTTCTAAGTCGTGCACTTTCTCGGTCCACTCTTGTTGAAGTGCTGTTTTATTACTGTTTCTAAACTAGGATTGACATTCTACAGTTGTGATAATAGCATTTTTGTAACTTGCCATCCGCACAGAAAATACGAGAAAATCTGCATGTTTGATTATAGTATTAATGGACAAATAAGTTTTTGCTAAATGTGAGTATTTCTGTTCCTTTTTGTAAATATGTGACATTCCTGATTGATTTGGGTTTTTTTGTTGTTGTTGTTTTGTTTTGTTTTGTTTTTTTGAGATGGAGTCTCACTCTTGTCACCCAGGCTGGAGTGCAGTGGCGCCATCTCGGCTCACTGCAACCTCTGCCTCCTGGGTTCACGTAATCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCACGCTGGCCAATTTTTGTACTTTTAGTAGAGACAGTGTTTCGCCATGTTGGCCAGGCTGGTTTCAAACTCCTGACCTCAGGTGATCCGCCCACCTCAGCCTCCCAAAATGGTGGGATTACAGGTGTGTGGGCCACCGTGCCTGGCTGATTCAGCATTTTTTATCAGGCAGGACCAGGTGGCACTTCCACCTCCAGCCTCTGGTCCTACCAATGGATTCATGGAGTAGCCTGGACTGTTTCATAGTTTTCTAAATGTACAAATTCTTATAGGCTAGACTTAGATTCATTAACTCAAATTCAATGCTTCTATCAGACTCAGTTTTTTGTAACTAATAGATTTTTTTTTCCACTTTTGTTCTACTCCTTCCCTAATAGCTTTTTAAAAAAATCTCCCCAGTAGAGAAACATTTGGAAAAGACAGAAAACTAAAAAGGAAGAAAAAAGATCCCTATTAGATACACTTCTTAAATACAATCACATTAACATTTTGAGCTATTTCCTTCCAGCCTTTTTAGGGCAGATTTTGGTTGGTTTTTACATAGTTGAGATTGTACTGTTCATACAGTTTTATACCCTTTTTCATTTAACTTTATAACTTAAATATTGCTCTATGTTAGTATAAGCTTTTCACAAACATTAGTATAGTCTCCCTTTTATAATTAATGTTTGTGGGTATTTCTTGGCATGCATCTTTAATTCCTTATCCTAGCCTTTGGGCACAATTCCTGTGCTCAAAAATGAGAGTGACGGCTGGCATGGTGGCTCCCGCCTGTAATCCCAGTACTTTGGAAAGCCAAGGTAAGAGGATTGCTTGAGCCCAGAACTTCAAGATGAGCCTGGGCTCATAGTGAGAACCCATCTATACAAAAAATTTTTAAAAATTAGCATGGCGGCACACATCTGTAATCCTAGCTACTTGGCAGGCTGAGGTGAGAAGATCATTGGAGTTTAGGAATTGGAGGCTGCAGTGAGCCATGAGTATGCCACTGCACTCCAGCCTGGGGGACAGAGCAAGACCCTGCCTCAAAAAAAAAAAAAAAAAAAAAATCAGGCCGGGCATGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGTCGAGGTGGGCAGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTAAAACCCCATTTCTACTAAAAAATACAAGAATTAGCTGGGTGTGGTGGCGCATGCCTGTAATCCTAGCTACTCAGGAGGCTGAGGCAGGAGAATCACTTGAACCCAGGAGGCGAAGATTGCAGTGAGCTGATATCGCACCATTGTACTCCAGCCTGTGTGACAGAGCAATACTCTTGTCTCAAAAAAAAAAAAAAATTCAAATCAGAGTGAAGTGAATGAGACACTCCAGTTTTCCTTCTACTCCGAATTTCAACTGATTTTAGCTCCTCCTTTCAACATTCAACAAATAGTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTGAGATGGAGTCTCACTCTGTTGCCCAGGCTGGAGTGCAGTGGTGCGATCTCTGCTCACTACAAGCTCTGCCTCCCGAGTTCAAGTGATTCTCCTGGCTCACCCTCCTGAGTAGCTGGGATTACAGGCGCCTGCCACCATGCCTGGCTAATTTTGTGTTTTTAGTGGAGACGGGGTTTCACCATGTTGTCCAGGATGGTCTTGATCTCCTGACCTTGTGATCCACCCACCTCAGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCACCGCGTCCAGCCAGCTTTATTATTTTTTTTAAGCTGTCTTTGTGTCAAAATGATAGTTCATGCTCCTCTTGTTAAAACCTGCAGGCCGAGCACAGTGGCTCATGCCTGTAATCCCAGCATTTTGGGAGACCAAGGCGGATGGATCACCTGAGGTCAGGAGCTGAAGACCAGCCTGGCTAACATGGTGAAACCTCATCTCCACTTAAAATACAAAAATTGCCGGCCGCGGCGGCTCATGCCTGTAATCCCAGCACTTTGGGAGGCCTAGGCGGGTGGATCACGAGGTCAGGAAATCGAGACCATCCTGGCTAACACGGGTGAAACCCCGTCTCTATTAAAAAATAGAAAAAATTAGGCGGGCGTGGTGGTGAGCGCCTGTAGTCCCAGCTACTCGAGAGCCTGAGGCAGGAGAATGGCATGAACCTGGAAGGCGGAGCTTGCAGTGAGCTGAGATGGTGCCACTGCACTCTAACCTGGGCGACAGAGTGAGACACCGTCTCAAAAAAAAAAACAAAAAACAAAAATTATCCAGGTGTGGCGGTGGGCGCCTGTGAGGCAGGCGAATCTCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCAAGATCACACCATTGCACTCCAGCCTGGGCAACAAGAGTGAAATTCCATCTCAAAAAGAAACCAAAAAAACAAAAAAAAAACATGCCGTTTGAGTACTGTGTTTTTGGTGTTGTCCAAGGAAAATTAAAAACCTGTAGCATGAATAATGTTTGTTTTTCATTTCGAATCTTGTGAATGTATTAAATATATCGCTCTTAAGAGACGGTGAAGTTCCTATTTCAAGTTTTTTTTTTTTTTTTTTTTTTTAAAGCTGTTTTTTAATACATTAAATGGTGCTGAGTAAAGGAAATAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.v_QTc1p-MUYdgrRv4LMT6ByXIOsdw3C_?start=0&end=50 - response: - body: - string: CCTCGCCTCCGTTACAACGGCCTACGGTGCTGGAGGATCCTTCTGCGCAC - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/cassettes/test_normalize_allele.yaml b/tests/cassettes/test_normalize_allele.yaml index 2d92d5c5..a953adce 100644 --- a/tests/cassettes/test_normalize_allele.yaml +++ b/tests/cassettes/test_normalize_allele.yaml @@ -289,3310 +289,10 @@ interactions: body: null headers: {} method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV - response: - body: - string: "{\n \"added\": \"2016-08-27T21:22:36Z\",\n \"aliases\": [\n \"GRCh38:6\",\n - \ \"GRCh38:chr6\",\n \"GRCh38.p1:6\",\n \"GRCh38.p1:chr6\",\n \"GRCh38.p10:6\",\n - \ \"GRCh38.p10:chr6\",\n \"GRCh38.p11:6\",\n \"GRCh38.p11:chr6\",\n - \ \"GRCh38.p12:6\",\n \"GRCh38.p12:chr6\",\n \"GRCh38.p2:6\",\n \"GRCh38.p2:chr6\",\n - \ \"GRCh38.p3:6\",\n \"GRCh38.p3:chr6\",\n \"GRCh38.p4:6\",\n \"GRCh38.p4:chr6\",\n - \ \"GRCh38.p5:6\",\n \"GRCh38.p5:chr6\",\n \"GRCh38.p6:6\",\n \"GRCh38.p6:chr6\",\n - \ \"GRCh38.p7:6\",\n \"GRCh38.p7:chr6\",\n \"GRCh38.p8:6\",\n \"GRCh38.p8:chr6\",\n - \ \"GRCh38.p9:6\",\n \"GRCh38.p9:chr6\",\n \"MD5:5691468a67c7e7a7b5f2a3a683792c29\",\n - \ \"NCBI:NC_000006.12\",\n \"refseq:NC_000006.12\",\n \"SEGUID:WZuaTlR1qIRxrJ5dpG2Z0ydeqX4\",\n - \ \"SHA1:599b9a4e5475a88471ac9e5da46d99d3275ea97e\",\n \"VMC:GS_0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n - \ \"sha512t24u:0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\",\n \"ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV\"\n - \ ],\n \"alphabet\": \"ACGNTY\",\n \"length\": 170805979\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.0iKlIQk2oZLoeOG9P1riRU6hvL5Ux8TV?start=26090950&end=26090951 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP - response: - body: - string: "{\n \"added\": \"2016-08-27T23:57:18Z\",\n \"aliases\": [\n \"GRCh38:X\",\n - \ \"GRCh38:chrX\",\n \"GRCh38.p1:X\",\n \"GRCh38.p1:chrX\",\n \"GRCh38.p10:X\",\n - \ \"GRCh38.p10:chrX\",\n \"GRCh38.p11:X\",\n \"GRCh38.p11:chrX\",\n - \ \"GRCh38.p12:X\",\n \"GRCh38.p12:chrX\",\n \"GRCh38.p2:X\",\n \"GRCh38.p2:chrX\",\n - \ \"GRCh38.p3:X\",\n \"GRCh38.p3:chrX\",\n \"GRCh38.p4:X\",\n \"GRCh38.p4:chrX\",\n - \ \"GRCh38.p5:X\",\n \"GRCh38.p5:chrX\",\n \"GRCh38.p6:X\",\n \"GRCh38.p6:chrX\",\n - \ \"GRCh38.p7:X\",\n \"GRCh38.p7:chrX\",\n \"GRCh38.p8:X\",\n \"GRCh38.p8:chrX\",\n - \ \"GRCh38.p9:X\",\n \"GRCh38.p9:chrX\",\n \"MD5:2b3a55ff7f58eb308420c8a9b11cac50\",\n - \ \"NCBI:NC_000023.11\",\n \"refseq:NC_000023.11\",\n \"SEGUID:Z9QbQrrPjpjXSMJesDYqC3A43lA\",\n - \ \"SHA1:67d41b42bacf8e98d748c25eb0362a0b7038de50\",\n \"VMC:GS_w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n - \ \"sha512t24u:w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\",\n \"ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP\"\n - \ ],\n \"alphabet\": \"ACGNRSTWY\",\n \"length\": 156040895\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980377 - response: - body: - string: TA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980374&end=155980375 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980378 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980375 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980377&end=155980377 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980375 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980373&end=155980374 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980372&end=155980373 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.w0WZEvgJF0zf_P4yyTzjjv9oW1z61HHP?start=155980375&end=155980376 + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=939145&end=939147 response: body: - string: T + string: GA headers: {} status: code: 200 @@ -3601,7 +301,7 @@ interactions: body: null headers: {} method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900413 response: body: string: '' @@ -3613,31 +313,7 @@ interactions: body: null headers: {} method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 response: body: string: A @@ -3649,31 +325,7 @@ interactions: body: null headers: {} method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289467&end=289468 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289468&end=289469 + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 response: body: string: A @@ -3681,40 +333,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289469&end=289470 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289469 - response: - body: - string: CAGCA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/cassettes/test_normalize_clinvar_rle.yaml b/tests/cassettes/test_normalize_clinvar_rle.yaml index 041f2203..f17cb16f 100644 --- a/tests/cassettes/test_normalize_clinvar_rle.yaml +++ b/tests/cassettes/test_normalize_clinvar_rle.yaml @@ -671,8068 +671,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66927 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66925&end=66926 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66928 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66926&end=66926 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=66927&end=66927 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766400&end=766404 - response: - body: - string: ATAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766398&end=766399 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766405 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766405&end=766406 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766406&end=766407 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766407&end=766408 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766404&end=766407 - response: - body: - string: ATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=766399&end=766407 - response: - body: - string: AATAAATA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930140 - response: - body: - string: TCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930144 - response: - body: - string: TCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930144 - response: - body: - string: CTCCTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752908 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752907&end=1752908 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752909&end=1752910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752910&end=1752911 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752914 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752914&end=1752915 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752916 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752917 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752917&end=1752918 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752918&end=1752919 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752919&end=1752920 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752920&end=1752921 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752921&end=1752922 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752922&end=1752923 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752923&end=1752924 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752924&end=1752925 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752925&end=1752926 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752926&end=1752927 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752927&end=1752928 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752928&end=1752929 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752929&end=1752930 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752930&end=1752931 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752931&end=1752932 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752933 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752934 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752935 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752935&end=1752936 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752937 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752908&end=1752936 - response: - body: - string: CCTCCTCCTCCTCCTCCTCCTCCTCCTC - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/cassettes/test_normalize_partial_rle_del_ins.yaml b/tests/cassettes/test_normalize_partial_rle_del_ins.yaml new file mode 100644 index 00000000..47da614c --- /dev/null +++ b/tests/cassettes/test_normalize_partial_rle_del_ins.yaml @@ -0,0 +1,170 @@ +interactions: +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752915 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752915&end=1752918 + response: + body: + string: CTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752915 + response: + body: + string: CCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752911&end=1752916 + response: + body: + string: CCTCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752934 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752916 + response: + body: + string: CTCC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752916&end=1752916 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752913&end=1752915 + response: + body: + string: TC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752912&end=1752915 + response: + body: + string: CTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752934&end=1752936 + response: + body: + string: TC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752936&end=1752936 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752933&end=1752936 + response: + body: + string: CTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752936 + response: + body: + string: CCTC + headers: {} + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=1752932&end=1752932 + response: + body: + string: '' + headers: {} + status: + code: 200 + message: OK +version: 1 diff --git a/tests/cassettes/test_vcrtest.yaml b/tests/cassettes/test_vcrtest.yaml index a0bf4808..6bb5fd47 100644 --- a/tests/cassettes/test_vcrtest.yaml +++ b/tests/cassettes/test_vcrtest.yaml @@ -1,148 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=50000000&end=50000050 - response: - body: - string: TTAGGTGTTTAGATGATTTCTAAGATGCTTTTAAGCCCAGTATTTCTATT - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml index 7e28b1ab..be51c7b6 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch37_attrs.yaml @@ -559,6724 +559,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh37:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX - response: - body: - string: "{\n \"added\": \"2016-08-24T05:11:23Z\",\n \"aliases\": [\n \"GRCh37:19\",\n - \ \"GRCh37:chr19\",\n \"GRCh37.p10:19\",\n \"GRCh37.p10:chr19\",\n - \ \"GRCh37.p11:19\",\n \"GRCh37.p11:chr19\",\n \"GRCh37.p12:19\",\n - \ \"GRCh37.p12:chr19\",\n \"GRCh37.p13:19\",\n \"GRCh37.p13:chr19\",\n - \ \"GRCh37.p2:19\",\n \"GRCh37.p2:chr19\",\n \"GRCh37.p5:19\",\n \"GRCh37.p5:chr19\",\n - \ \"GRCh37.p9:19\",\n \"GRCh37.p9:chr19\",\n \"MD5:1aacd71f30db8e561810913e0b72636d\",\n - \ \"NCBI:NC_000019.9\",\n \"refseq:NC_000019.9\",\n \"SEGUID:DbxQSFOgAziBmfglM/SHER/3UoI\",\n - \ \"SHA1:0dbc504853a003388199f82533f487111ff75282\",\n \"VMC:GS_ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"sha512t24u:ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n \"ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX\",\n - \ \"hs37-1kg:19\",\n \"hs37d5:19\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 59128983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=28946399&end=28946400 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.ItRDD47aMoioDCNW_occY5fWKZBKlxCX?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220023&end=54220024 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54220998&end=54220999 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh37:chr19?start=54221653&end=54221654 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml index 58440680..48f1f0db 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs.yaml @@ -599,7204 +599,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml index 58440680..48f1f0db 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_attrs_altsonly.yaml @@ -599,7204 +599,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml index 58440680..48f1f0db 100644 --- a/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_grch38_noattrs.yaml @@ -599,7204 +599,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml index 58440680..48f1f0db 100644 --- a/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_pickle_only.yaml @@ -599,7204 +599,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_rle.yaml b/tests/extras/cassettes/test_annotate_vcf_rle.yaml index 29922a83..2ba6fd04 100644 --- a/tests/extras/cassettes/test_annotate_vcf_rle.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_rle.yaml @@ -237,2860 +237,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210778&end=100210779 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210778 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995992 - response: - body: - string: CTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995992 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995991&end=102995992 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995990&end=102995991 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995989&end=102995990 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995988&end=102995989 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995987&end=102995988 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=102995992&end=102995993 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml index 58440680..48f1f0db 100644 --- a/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml +++ b/tests/extras/cassettes/test_annotate_vcf_vcf_only.yaml @@ -599,7204 +599,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:chr19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=82663&end=82664 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284351 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284351 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284349&end=284350 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284352 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284352&end=284353 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284353&end=284354 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284354&end=284355 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284355&end=284356 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284356&end=284357 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284357&end=284358 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284358&end=284359 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284359&end=284360 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284360&end=284361 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284361&end=284362 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284362&end=284363 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284363&end=284364 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284364&end=284365 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284365&end=284366 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284366&end=284367 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284350 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284351&end=284366 - response: - body: - string: AAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=284350&end=284366 - response: - body: - string: AAAAAAAAAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=28946399&end=28946400 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490416 - response: - body: - string: ACT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490416 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490413&end=490414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490417 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490414&end=490414 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=490416&end=490416 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54220023&end=54220024 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54220998&end=54220999 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:chr19?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=54221653&end=54221654 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_from_beacon.yaml b/tests/extras/cassettes/test_from_beacon.yaml index d9857953..e04892cc 100644 --- a/tests/extras/cassettes/test_from_beacon.yaml +++ b/tests/extras/cassettes/test_from_beacon.yaml @@ -1,1170 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:19 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:MT - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_from_gnomad.yaml b/tests/extras/cassettes/test_from_gnomad.yaml index b818953b..1509ab55 100644 --- a/tests/extras/cassettes/test_from_gnomad.yaml +++ b/tests/extras/cassettes/test_from_gnomad.yaml @@ -650,15082 +650,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:19?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:MT?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:13 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct?start=10082&end=10083 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003097 - response: - body: - string: AC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003095&end=20003096 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003098 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003096&end=20003096 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003097&end=20003097 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003009&end=20003010 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003010 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=20003010&end=20003011 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993839 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993838&end=19993839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993837&end=19993838 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993836&end=19993837 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=19993839&end=19993840 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:17 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:17?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:52:54Z\",\n \"aliases\": [\n \"GRCh38:17\",\n - \ \"GRCh38:chr17\",\n \"GRCh38.p1:17\",\n \"GRCh38.p1:chr17\",\n \"GRCh38.p10:17\",\n - \ \"GRCh38.p10:chr17\",\n \"GRCh38.p11:17\",\n \"GRCh38.p11:chr17\",\n - \ \"GRCh38.p12:17\",\n \"GRCh38.p12:chr17\",\n \"GRCh38.p2:17\",\n - \ \"GRCh38.p2:chr17\",\n \"GRCh38.p3:17\",\n \"GRCh38.p3:chr17\",\n - \ \"GRCh38.p4:17\",\n \"GRCh38.p4:chr17\",\n \"GRCh38.p5:17\",\n \"GRCh38.p5:chr17\",\n - \ \"GRCh38.p6:17\",\n \"GRCh38.p6:chr17\",\n \"GRCh38.p7:17\",\n \"GRCh38.p7:chr17\",\n - \ \"GRCh38.p8:17\",\n \"GRCh38.p8:chr17\",\n \"GRCh38.p9:17\",\n \"GRCh38.p9:chr17\",\n - \ \"MD5:f9a0fb01553adb183568e3eb9d8626db\",\n \"NCBI:NC_000017.11\",\n - \ \"refseq:NC_000017.11\",\n \"SEGUID:s2Skupj8o6wdjf0aPrgOipAr67Q\",\n - \ \"SHA1:b364a4ba98fca3ac1d8dfd1a3eb80e8a902bebb4\",\n \"VMC:GS_dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n - \ \"sha512t24u:dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\",\n \"ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7\"\n - \ ],\n \"alphabet\": \"ACGKNRSTWY\",\n \"length\": 83257441\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129598 - response: - body: - string: GTTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129598 - response: - body: - string: TTGWCACATGA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129586&end=83129587 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129599 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129599&end=83129600 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129600&end=83129601 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129601&end=83129602 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129587 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129598&end=83129601 - response: - body: - string: TTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.dLZ15tNO1Ur0IcGjwc3Sdi_0A6Yf4zm7?start=83129587&end=83129601 - response: - body: - string: TTGWCACATGATTG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=17 - response: - body: - string: NNNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=1&end=16 - response: - body: - string: NNNNNNNNNNNNNNN - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:13?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_from_hgvs.yaml b/tests/extras/cassettes/test_from_hgvs.yaml index 6ee8ef22..ed06582a 100644 --- a/tests/extras/cassettes/test_from_hgvs.yaml +++ b/tests/extras/cassettes/test_from_hgvs.yaml @@ -1,1962 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_012920.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T06:13:07Z\",\n \"aliases\": [\n \"Ensembl:MT\",\n - \ \"ensembl:MT\",\n \"GRCh37.p10:MT\",\n \"GRCh37.p10:chrM\",\n \"GRCh37.p11:MT\",\n - \ \"GRCh37.p11:chrM\",\n \"GRCh37.p12:MT\",\n \"GRCh37.p12:chrM\",\n - \ \"GRCh37.p13:MT\",\n \"GRCh37.p13:chrM\",\n \"GRCh37.p2:MT\",\n - \ \"GRCh37.p2:chrM\",\n \"GRCh37.p5:MT\",\n \"GRCh37.p5:chrM\",\n - \ \"GRCh37.p9:MT\",\n \"GRCh37.p9:chrM\",\n \"GRCh38:MT\",\n \"GRCh38:chrM\",\n - \ \"GRCh38.p1:MT\",\n \"GRCh38.p1:chrM\",\n \"GRCh38.p10:MT\",\n \"GRCh38.p10:chrM\",\n - \ \"GRCh38.p11:MT\",\n \"GRCh38.p11:chrM\",\n \"GRCh38.p12:MT\",\n - \ \"GRCh38.p12:chrM\",\n \"GRCh38.p2:MT\",\n \"GRCh38.p2:chrM\",\n - \ \"GRCh38.p3:MT\",\n \"GRCh38.p3:chrM\",\n \"GRCh38.p4:MT\",\n \"GRCh38.p4:chrM\",\n - \ \"GRCh38.p5:MT\",\n \"GRCh38.p5:chrM\",\n \"GRCh38.p6:MT\",\n \"GRCh38.p6:chrM\",\n - \ \"GRCh38.p7:MT\",\n \"GRCh38.p7:chrM\",\n \"GRCh38.p8:MT\",\n \"GRCh38.p8:chrM\",\n - \ \"GRCh38.p9:MT\",\n \"GRCh38.p9:chrM\",\n \"MD5:c68f52674c9fb33aef52dcf399755519\",\n - \ \"NCBI:NC_012920.1\",\n \"refseq:NC_012920.1\",\n \"SEGUID:eQNFYXnsCzhp/MkfBUBVnuFZzTA\",\n - \ \"SHA1:7903456179ec0b3869fcc91f0540559ee159cd30\",\n \"VMC:GS_k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"sha512t24u:k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n \"ga4gh:SQ.k3grVkjY-hoWcCUojHw6VU6GE3MZ8Sct\",\n - \ \"hs37-1kg:MT\",\n \"hs37d5:MT\"\n ],\n \"alphabet\": \"ACGNT\",\n - \ \"length\": 16569\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=19993837&end=19993839 - response: - body: - string: GT - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml index 0c3a0a9e..11a2ee4b 100644 --- a/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml +++ b/tests/extras/cassettes/test_get_vrs_object_invalid_input.yaml @@ -1,988 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:. - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:7 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:7?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=140753335&end=140753336 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml index 1afca2d8..01a253d4 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181220del-expected2].yaml @@ -90,2022 +90,6 @@ interactions: TGGAAGGGGTCCATGTGCCCC - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181220 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181218&end=55181219 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181221 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181219&end=55181219 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181220&end=55181220 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181220&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181220 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181220&seq_stop=55181240&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181220-55181240 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - TGGAAGGGGTCCATGTGCCCC - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml index deb7220e..dbf9fef6 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181230_55181231insGGCT-expected3].yaml @@ -84,1896 +84,6 @@ interactions: GGTC - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181230 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181229&end=55181230 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181230&end=55181231 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181231&seq_stop=55181231&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181231-55181231 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181230&seq_stop=55181250&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181230-55181250 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - CCATGTGCCCCTCCTTCTGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181227&seq_stop=55181230&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181227-55181230 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - GGTC - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml index 352f12a6..3c14c730 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000007.14:g.55181320A>T-expected1].yaml @@ -65,1497 +65,6 @@ interactions: AACCCCCACGTGTGCCGCCTG - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000007.14 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:23:35Z\",\n \"aliases\": [\n \"GRCh38:7\",\n - \ \"GRCh38:chr7\",\n \"GRCh38.p1:7\",\n \"GRCh38.p1:chr7\",\n \"GRCh38.p10:7\",\n - \ \"GRCh38.p10:chr7\",\n \"GRCh38.p11:7\",\n \"GRCh38.p11:chr7\",\n - \ \"GRCh38.p12:7\",\n \"GRCh38.p12:chr7\",\n \"GRCh38.p2:7\",\n \"GRCh38.p2:chr7\",\n - \ \"GRCh38.p3:7\",\n \"GRCh38.p3:chr7\",\n \"GRCh38.p4:7\",\n \"GRCh38.p4:chr7\",\n - \ \"GRCh38.p5:7\",\n \"GRCh38.p5:chr7\",\n \"GRCh38.p6:7\",\n \"GRCh38.p6:chr7\",\n - \ \"GRCh38.p7:7\",\n \"GRCh38.p7:chr7\",\n \"GRCh38.p8:7\",\n \"GRCh38.p8:chr7\",\n - \ \"GRCh38.p9:7\",\n \"GRCh38.p9:chr7\",\n \"MD5:cc044cc2256a1141212660fb07b6171e\",\n - \ \"NCBI:NC_000007.14\",\n \"refseq:NC_000007.14\",\n \"SEGUID:4+JjCcBVhPCr8vdIhUKFycPv8bY\",\n - \ \"SHA1:e3e26309c05584f0abf2f748854285c9c3eff1b6\",\n \"VMC:GS_F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n - \ \"sha512t24u:F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\",\n \"ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul\"\n - \ ],\n \"alphabet\": \"ACGNRSTY\",\n \"length\": 159345973\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.F-LrLMe1SRpfUZHkQmvkVKFEGaoDeHul?start=55181319&end=55181320 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181320&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181320 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000007.14&rettype=fasta&seq_start=55181320&seq_stop=55181340&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000007.14:55181320-55181340 Homo sapiens chromosome 7, GRCh38.p14 - Primary Assembly - - AACCCCCACGTGTGCCGCCTG - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml index 7c58306e..7a529525 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32316467dup-expected5].yaml @@ -90,2022 +90,6 @@ interactions: ATTGGATCCAAAGAGAGGCCA - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316466&end=32316467 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316467 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316465&end=32316466 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32316467&end=32316468 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316467&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316467 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32316467&seq_stop=32316487&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32316467-32316487 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - ATTGGATCCAAAGAGAGGCCA - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index 917caa0e..704a864a 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -276,6047 +276,13 @@ interactions: uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com response: body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331093-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331094 - response: - body: - string: TT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331094 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331093&end=32331094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331092&end=32331093 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331091&end=32331092 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331090&end=32331091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331089&end=32331090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331088&end=32331089 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331087&end=32331088 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331086&end=32331087 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331085&end=32331086 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331084&end=32331085 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331083&end=32331084 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331083 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331081&end=32331082 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331094&end=32331095 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331082&end=32331094 - response: - body: - string: TTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331094&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331094-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - T - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331083&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331083-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTTTTTTTTTTGAGGTGGAGTCTTGCTCTGT - + string: '{"error":"API rate limit exceeded","api-key":"69.173.97.130","count":"4","limit":"3"} ' headers: {} status: - code: 200 - message: OK + code: 429 + message: Too Many Requests - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml index d2816bee..bded6051 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32936732=-expected0].yaml @@ -24,822 +24,6 @@ interactions: C - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000013.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT - response: - body: - string: "{\n \"added\": \"2016-08-27T23:50:14Z\",\n \"aliases\": [\n \"GRCh38:13\",\n - \ \"GRCh38:chr13\",\n \"GRCh38.p1:13\",\n \"GRCh38.p1:chr13\",\n \"GRCh38.p10:13\",\n - \ \"GRCh38.p10:chr13\",\n \"GRCh38.p11:13\",\n \"GRCh38.p11:chr13\",\n - \ \"GRCh38.p12:13\",\n \"GRCh38.p12:chr13\",\n \"GRCh38.p2:13\",\n - \ \"GRCh38.p2:chr13\",\n \"GRCh38.p3:13\",\n \"GRCh38.p3:chr13\",\n - \ \"GRCh38.p4:13\",\n \"GRCh38.p4:chr13\",\n \"GRCh38.p5:13\",\n \"GRCh38.p5:chr13\",\n - \ \"GRCh38.p6:13\",\n \"GRCh38.p6:chr13\",\n \"GRCh38.p7:13\",\n \"GRCh38.p7:chr13\",\n - \ \"GRCh38.p8:13\",\n \"GRCh38.p8:chr13\",\n \"GRCh38.p9:13\",\n \"GRCh38.p9:chr13\",\n - \ \"MD5:a5437debe2ef9c9ef8f3ea2874ae1d82\",\n \"NCBI:NC_000013.11\",\n - \ \"refseq:NC_000013.11\",\n \"SEGUID:2oDBty0yKV9wHo7gg+Bt+fPgi5o\",\n - \ \"SHA1:da80c1b72d32295f701e8ee083e06df9f3e08b9a\",\n \"VMC:GS__0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n - \ \"sha512t24u:_0wi-qoDrvram155UmcSC-zA5ZK4fpLT\",\n \"ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT\"\n - \ ],\n \"alphabet\": \"ACGKNTY\",\n \"length\": 114364328\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936730&end=32936731 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936730 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936728&end=32936729 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936732&end=32936733 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936733&end=32936734 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936731 - response: - body: - string: CC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32936729&end=32936733 - response: - body: - string: CCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32936731&end=32936732 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32936732&seq_stop=32936732&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32936732-32936732 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - C - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml index 222f03ba..3cf20e71 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289464_289465insCACA-expected8].yaml @@ -138,3030 +138,6 @@ interactions: CTCA - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289464 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289463&end=289464 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289465 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289465&end=289466 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289466&end=289467 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289464&end=289466 - response: - body: - string: CA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CA - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289466&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289466-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289465&seq_stop=289486&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289465-289486 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CAGCACTTTGGGAGGCCGAGGC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289463&seq_stop=289466&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289463-289466 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CTCA - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml index e7b30831..96e65209 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000019.10:g.289485_289500del-expected9].yaml @@ -168,3660 +168,6 @@ interactions: CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289484&end=289500 - response: - body: - string: GCGGGCAGATCACGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289483&end=289484 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289482&end=289483 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289481&end=289482 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289481 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289479&end=289480 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289500&end=289501 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289501&end=289502 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289484 - response: - body: - string: CGAG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl?start=289480&end=289501 - response: - body: - string: CGAGGCGGGCAGATCACGAGG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289501&seq_stop=289501&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289501-289501 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000019.10&rettype=fasta&seq_start=289481&seq_stop=289521&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000019.10:289481-289521 Homo sapiens chromosome 19, GRCh38.p14 - Primary Assembly - - CGAGGCGGGCAGATCACGAGGTCAGGAGATCGAGACCATCC - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml index 07a1705c..44352fa1 100644 --- a/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_001331029.1:c.722A>G-expected6].yaml @@ -76,1728 +76,6 @@ interactions: ATGAACTCAATGTTCAGGATT - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_001331029.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=872&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-872 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - A - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:40Z\",\n \"aliases\": [\n \"MD5:a8d7243ffeea4ade1dbc33613887693b\",\n - \ \"NCBI:NM_001331029.1\",\n \"refseq:NM_001331029.1\",\n \"NCBI:XM_017001344.1\",\n - \ \"refseq:XM_017001344.1\",\n \"SEGUID:qw9iIJ9BPdGZfypwQH7S3L2f9gI\",\n - \ \"SHA1:ab0f62209f413dd1997f2a70407ed2dcbd9ff602\",\n \"VMC:GS_MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n - \ \"sha512t24u:MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\",\n \"ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 11291\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.MBIgVnoHFw34aFqNUVGM0zgjC3d-v8dK?start=871&end=872 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_001331029.1&rettype=fasta&seq_start=872&seq_stop=892&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_001331029.1:872-892 Homo sapiens protein phosphatase 1 regulatory - subunit 12B (PPP1R12B), transcript variant 8, mRNA - - ATGAACTCAATGTTCAGGATT - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml index eec3e2e9..20c3a261 100644 --- a/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml +++ b/tests/extras/cassettes/test_hgvs[NM_181798.1:c.1007G>T-expected7].yaml @@ -94,2106 +94,6 @@ interactions: G - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NM_181798.1 - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1263 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - G - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg - response: - body: - string: "{\n \"added\": \"2016-08-24T05:03:05Z\",\n \"aliases\": [\n \"MD5:93e2dc533ba755782b3affcf53470434\",\n - \ \"NCBI:NM_181798.1\",\n \"refseq:NM_181798.1\",\n \"NCBI:NR_040711.1\",\n - \ \"refseq:NR_040711.1\",\n \"SEGUID:0nrqUDibhGAQBZ4pXR+soOiCOf0\",\n - \ \"SHA1:d27aea50389b846010059e295d1faca0e88239fd\",\n \"VMC:GS_KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n - \ \"sha512t24u:KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\",\n \"ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg\"\n - \ ],\n \"alphabet\": \"ACGT\",\n \"length\": 3029\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.KN07u-RFqd1dTyOWOG98HnOq87Nq-ZIg?start=1262&end=1263 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NM_181798.1&rettype=fasta&seq_start=1263&seq_stop=1268&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NM_181798.1:1263-1268 Homo sapiens potassium voltage-gated channel - subfamily Q member 1 (KCNQ1), transcript variant 2, mRNA - - GTTCTG - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NR_040711.1&rettype=fasta&seq_start=1263&seq_stop=1263&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NR_040711.1:1263-1263 Homo sapiens potassium voltage-gated channel, - KQT-like subfamily, member 1 (KCNQ1), transcript variant 2, non-coding RNA - - G - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml b/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml index be9128e4..29ac449f 100644 --- a/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml +++ b/tests/extras/cassettes/test_normalize_microsatellite_counts[deletion].yaml @@ -1,8114 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930130&end=930131 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930129&end=930130 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930128&end=930129 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930127&end=930128 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930126&end=930127 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930125&end=930126 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930124&end=930125 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930123&end=930124 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930122&end=930123 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930121&end=930122 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930120&end=930121 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930119&end=930120 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930118&end=930119 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930117&end=930118 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930116&end=930117 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930115&end=930116 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930114&end=930115 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930113&end=930114 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930112&end=930113 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930111&end=930112 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930110&end=930111 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930109&end=930110 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930108&end=930109 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930107&end=930108 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930106&end=930107 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930105&end=930106 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930104&end=930105 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930103&end=930104 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930102&end=930103 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930101&end=930102 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930100&end=930101 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930099&end=930100 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930098&end=930099 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930097&end=930098 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930096&end=930097 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930095&end=930096 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930094&end=930095 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930093&end=930094 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930092&end=930093 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930091&end=930092 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930090&end=930091 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930090 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930088&end=930089 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930087&end=930088 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930086&end=930087 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930085&end=930086 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930084&end=930085 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930083&end=930084 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930082&end=930083 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930082 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930080&end=930081 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930153 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930131 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930152&end=930152 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930081&end=930152 - response: - body: - string: GCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml b/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml index 4972332e..664527a6 100644 --- a/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml +++ b/tests/extras/cassettes/test_normalize_microsatellite_counts[identity].yaml @@ -1,292 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930089&end=930152 - response: - body: - string: TTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACCTTCCTCTCCTCCTGCCCCACC - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml b/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml index 8c75949f..4fa2be2f 100644 --- a/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml +++ b/tests/extras/cassettes/test_normalize_microsatellite_counts[insertion].yaml @@ -251,3028 +251,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930151&end=930152 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930150&end=930151 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930149&end=930150 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930148&end=930149 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930147&end=930148 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930146&end=930147 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930145&end=930146 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930144&end=930145 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930143&end=930144 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930142&end=930143 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930141&end=930142 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930140&end=930141 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930139&end=930140 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930138&end=930139 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930137&end=930138 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930136&end=930137 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930135&end=930136 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930134&end=930135 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930133&end=930134 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930132&end=930133 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=930131&end=930132 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_reference_allele_rle.yaml b/tests/extras/cassettes/test_reference_allele_rle.yaml index c4ac36ed..fa7d4e56 100644 --- a/tests/extras/cassettes/test_reference_allele_rle.yaml +++ b/tests/extras/cassettes/test_reference_allele_rle.yaml @@ -1,1356 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210776&end=100210777 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210780 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210777 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210779&end=100210779 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=100210777&end=100210779 - response: - body: - string: AA - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml index 33b32a0f..8dad6e26 100644 --- a/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml +++ b/tests/extras/cassettes/test_rle_round_trip_gnomad_spdi.yaml @@ -2167,47700 +2167,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:1 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916841&end=145916844 - response: - body: - string: CCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916840&end=145916841 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916840 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916838&end=145916839 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916839&end=145916841 - response: - body: - string: CT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=145916844&end=145916844 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000001.11 - response: - body: - string: "{\n \"added\": \"2016-08-27T21:17:00Z\",\n \"aliases\": [\n \"GRCh38:1\",\n - \ \"GRCh38:chr1\",\n \"GRCh38.p1:1\",\n \"GRCh38.p1:chr1\",\n \"GRCh38.p10:1\",\n - \ \"GRCh38.p10:chr1\",\n \"GRCh38.p11:1\",\n \"GRCh38.p11:chr1\",\n - \ \"GRCh38.p12:1\",\n \"GRCh38.p12:chr1\",\n \"GRCh38.p2:1\",\n \"GRCh38.p2:chr1\",\n - \ \"GRCh38.p3:1\",\n \"GRCh38.p3:chr1\",\n \"GRCh38.p4:1\",\n \"GRCh38.p4:chr1\",\n - \ \"GRCh38.p5:1\",\n \"GRCh38.p5:chr1\",\n \"GRCh38.p6:1\",\n \"GRCh38.p6:chr1\",\n - \ \"GRCh38.p7:1\",\n \"GRCh38.p7:chr1\",\n \"GRCh38.p8:1\",\n \"GRCh38.p8:chr1\",\n - \ \"GRCh38.p9:1\",\n \"GRCh38.p9:chr1\",\n \"MD5:6aef897c3d6ff0c78aff06ac189178dd\",\n - \ \"NCBI:NC_000001.11\",\n \"refseq:NC_000001.11\",\n \"SEGUID:FCUd6VJ6uikS/VWLbhGdVmj2rOA\",\n - \ \"SHA1:14251de9527aba2912fd558b6e119d5668f6ace0\",\n \"VMC:GS_Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n - \ \"sha512t24u:Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\",\n \"ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 248956422\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=145916839&end=145916844 - response: - body: - string: CTCCT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/GRCh38:21 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:21?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033843 - response: - body: - string: TGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033843 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033799&end=5033800 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033844 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033844&end=5033845 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033845&end=5033846 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033846&end=5033847 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033847&end=5033848 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033848&end=5033849 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033849&end=5033850 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033850&end=5033851 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033851&end=5033852 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033852&end=5033853 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033853&end=5033854 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033854&end=5033855 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033855&end=5033856 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033856&end=5033857 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033857&end=5033858 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033858&end=5033859 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033859&end=5033860 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033860&end=5033861 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033861&end=5033862 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033862&end=5033863 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033863&end=5033864 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033864&end=5033865 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033865&end=5033866 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033866&end=5033867 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033867&end=5033868 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033868&end=5033869 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033869&end=5033870 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033871 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033871&end=5033872 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033872&end=5033873 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033873&end=5033874 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033874&end=5033875 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033875&end=5033876 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033876&end=5033877 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033877&end=5033878 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033878&end=5033879 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033879&end=5033880 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033880&end=5033881 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033881&end=5033882 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033882&end=5033883 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033883&end=5033884 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033884&end=5033885 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033885&end=5033886 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033886&end=5033887 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033887&end=5033888 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033888&end=5033889 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033889&end=5033890 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033890&end=5033891 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033891&end=5033892 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033892&end=5033893 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033893&end=5033894 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033894&end=5033895 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033895&end=5033896 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033896&end=5033897 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033897&end=5033898 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033898&end=5033899 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033899&end=5033900 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033900&end=5033901 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033901&end=5033902 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033902&end=5033903 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033903&end=5033904 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033904&end=5033905 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033905&end=5033906 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033906&end=5033907 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033907&end=5033908 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033908&end=5033909 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033909&end=5033910 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033910&end=5033911 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033911&end=5033912 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033912&end=5033913 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033914 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033800 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033843&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/refseq:NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033870&end=5033913 - response: - body: - string: GTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033842&end=5033843 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033841&end=5033842 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033840&end=5033841 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033839&end=5033840 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033838&end=5033839 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033837&end=5033838 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033836&end=5033837 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033835&end=5033836 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033834&end=5033835 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033833&end=5033834 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033832&end=5033833 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033831&end=5033832 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033830&end=5033831 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033829&end=5033830 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033828&end=5033829 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033827&end=5033828 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033826&end=5033827 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033825&end=5033826 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033824&end=5033825 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033823&end=5033824 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033822&end=5033823 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033821&end=5033822 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033820&end=5033821 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033819&end=5033820 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033818&end=5033819 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033817&end=5033818 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033816&end=5033817 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033815&end=5033816 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033814&end=5033815 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033813&end=5033814 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033812&end=5033813 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033811&end=5033812 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033810&end=5033811 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033809&end=5033810 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033808&end=5033809 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033807&end=5033808 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033806&end=5033807 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033805&end=5033806 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033804&end=5033805 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033803&end=5033804 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033802&end=5033803 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033801&end=5033802 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033801 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033800&end=5033870 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8?start=5033913&end=5033913 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000021.9 - response: - body: - string: "{\n \"added\": \"2016-08-27T23:55:35Z\",\n \"aliases\": [\n \"GRCh38:21\",\n - \ \"GRCh38:chr21\",\n \"GRCh38.p1:21\",\n \"GRCh38.p1:chr21\",\n \"GRCh38.p10:21\",\n - \ \"GRCh38.p10:chr21\",\n \"GRCh38.p11:21\",\n \"GRCh38.p11:chr21\",\n - \ \"GRCh38.p12:21\",\n \"GRCh38.p12:chr21\",\n \"GRCh38.p2:21\",\n - \ \"GRCh38.p2:chr21\",\n \"GRCh38.p3:21\",\n \"GRCh38.p3:chr21\",\n - \ \"GRCh38.p4:21\",\n \"GRCh38.p4:chr21\",\n \"GRCh38.p5:21\",\n \"GRCh38.p5:chr21\",\n - \ \"GRCh38.p6:21\",\n \"GRCh38.p6:chr21\",\n \"GRCh38.p7:21\",\n \"GRCh38.p7:chr21\",\n - \ \"GRCh38.p8:21\",\n \"GRCh38.p8:chr21\",\n \"GRCh38.p9:21\",\n \"GRCh38.p9:chr21\",\n - \ \"MD5:eefe014d35decf90afde7b37e9954554\",\n \"NCBI:NC_000021.9\",\n - \ \"refseq:NC_000021.9\",\n \"SEGUID:nNZkbzwQOAHC7VuVyIdN7IVZeAw\",\n - \ \"SHA1:9cd6646f3c103801c2ed5b95c8874dec8559780c\",\n \"VMC:GS_5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n - \ \"sha512t24u:5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\",\n \"ga4gh:SQ.5ZUqxCmDDgN4xTRbaSjN8LwgZironmB8\"\n - \ ],\n \"alphabet\": \"ACGMNRT\",\n \"length\": 46709983\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000021.9?start=5033800&end=5033913 - response: - body: - string: GGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCCGTGGGGTGTCCAGGGCGGGTCCAGGCACCGGCGCCCAGCCCCC - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228962 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228961&end=2228962 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228960&end=2228961 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228959&end=2228960 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228958&end=2228959 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228957&end=2228958 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228956&end=2228957 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228955&end=2228956 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228954&end=2228955 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=2228962&end=2228963 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=2228955&end=2228962 - response: - body: - string: GTGCCCG - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/GRCh38:1?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900410 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900410 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900408&end=236900409 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900411 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900411&end=236900412 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900412&end=236900413 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900413&end=236900414 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900414&end=236900415 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900415&end=236900416 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900416&end=236900417 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900417&end=236900418 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900419 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900410&end=236900418 - response: - body: - string: AAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ.Ya6Rs7DHhDeg7YaOSg1EoNi3U_nQ9SvO?start=236900418&end=236900418 - response: - body: - string: '' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000001.11?start=236900409&end=236900418 - response: - body: - string: AAAAAAAAA - headers: {} - status: - code: 200 - message: OK version: 1 diff --git a/tests/extras/cassettes/test_rle_seq_limit.yaml b/tests/extras/cassettes/test_rle_seq_limit.yaml index 9530f999..d7046ab8 100644 --- a/tests/extras/cassettes/test_rle_seq_limit.yaml +++ b/tests/extras/cassettes/test_rle_seq_limit.yaml @@ -536,11388 +536,6 @@ interactions: GT - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000013.11?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331094 - response: - body: - string: TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331080&end=32331081 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331079&end=32331080 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331078&end=32331079 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331077&end=32331078 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331076&end=32331077 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331075&end=32331076 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331074&end=32331075 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331073&end=32331074 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331072&end=32331073 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331071&end=32331072 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331070&end=32331071 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331069&end=32331070 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331068&end=32331069 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331067&end=32331068 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331066&end=32331067 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331065&end=32331066 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331064&end=32331065 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331063&end=32331064 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331062&end=32331063 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331061&end=32331062 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331060&end=32331061 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331059&end=32331060 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331058&end=32331059 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331057&end=32331058 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331056&end=32331057 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331055&end=32331056 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331054&end=32331055 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331053&end=32331054 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331052&end=32331053 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331051&end=32331052 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331050&end=32331051 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331049&end=32331050 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331048&end=32331049 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331047&end=32331048 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331046&end=32331047 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331045&end=32331046 - response: - body: - string: A - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331044&end=32331045 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331043&end=32331044 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331042&end=32331043 - response: - body: - string: T - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/ga4gh:SQ._0wi-qoDrvram155UmcSC-zA5ZK4fpLT?start=32331041&end=32331042 - response: - body: - string: G - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331094 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTT - - - ' - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331043&seq_stop=32331114&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '>NC_000013.11:32331043-32331114 Homo sapiens chromosome 13, GRCh38.p14 - Primary Assembly - - TTTAGTTGAACTACAGGTTTTTTTGTTGTTGTTGTTTTGATTTTTTTTTTTTGAGGTGGAGTCTTGCTCT - - GT - - ' headers: {} status: diff --git a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml index 24b86329..13bba609 100644 --- a/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml +++ b/tests/extras/cassettes/test_to_hgvs_iri_ref_keyerror.yaml @@ -1,256 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/ga4gh:seqrefs.jsonc - response: - body: - string: '' - headers: {} - status: - code: 404 - message: NOT FOUND - request: body: null headers: {} diff --git a/tests/extras/cassettes/test_to_spdi.yaml b/tests/extras/cassettes/test_to_spdi.yaml index a073ae72..46106902 100644 --- a/tests/extras/cassettes/test_to_spdi.yaml +++ b/tests/extras/cassettes/test_to_spdi.yaml @@ -1,796 +1,4 @@ interactions: -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/metadata/NC_000019.10 - response: - body: - string: "{\n \"added\": \"2016-08-24T08:19:02Z\",\n \"aliases\": [\n \"Ensembl:19\",\n - \ \"ensembl:19\",\n \"GRCh38:19\",\n \"GRCh38:chr19\",\n \"GRCh38.p1:19\",\n - \ \"GRCh38.p1:chr19\",\n \"GRCh38.p10:19\",\n \"GRCh38.p10:chr19\",\n - \ \"GRCh38.p11:19\",\n \"GRCh38.p11:chr19\",\n \"GRCh38.p12:19\",\n - \ \"GRCh38.p12:chr19\",\n \"GRCh38.p2:19\",\n \"GRCh38.p2:chr19\",\n - \ \"GRCh38.p3:19\",\n \"GRCh38.p3:chr19\",\n \"GRCh38.p4:19\",\n \"GRCh38.p4:chr19\",\n - \ \"GRCh38.p5:19\",\n \"GRCh38.p5:chr19\",\n \"GRCh38.p6:19\",\n \"GRCh38.p6:chr19\",\n - \ \"GRCh38.p7:19\",\n \"GRCh38.p7:chr19\",\n \"GRCh38.p8:19\",\n \"GRCh38.p8:chr19\",\n - \ \"GRCh38.p9:19\",\n \"GRCh38.p9:chr19\",\n \"MD5:b0eba2c7bb5c953d1e06a508b5e487de\",\n - \ \"NCBI:NC_000019.10\",\n \"refseq:NC_000019.10\",\n \"SEGUID:AHxM5/L8jIX08UhBBkKXkiO5rhY\",\n - \ \"SHA1:007c4ce7f2fc8c85f4f148410642979223b9ae16\",\n \"VMC:GS_IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n - \ \"sha512t24u:IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\",\n \"ga4gh:SQ.IIB53T8CNeJJdUqzn9V_JnRtQadwWCbl\"\n - \ ],\n \"alphabet\": \"ACGNT\",\n \"length\": 58617616\n}\n" - headers: {} - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: http://localhost:5000/seqrepo/1/sequence/NC_000019.10?start=44908821&end=44908822 - response: - body: - string: C - headers: {} - status: - code: 200 - message: OK - request: body: null headers: {} From 5b7d1f76e661da86e160d2441475b9d0c03e2b1c Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 2 Dec 2025 17:38:11 -0500 Subject: [PATCH 33/41] Update VRS_RepeatSubunitLengths docstring --- src/ga4gh/vrs/extras/annotator/vcf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index 4319dd82..d4bcf595 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -207,7 +207,7 @@ def _update_vcf_header( info_field_num, "Integer", ( - "The repeat subunit length values from ReferenceLengthExpression states for the GA4GH VRS " + "The repeatSubunitLength values from ReferenceLengthExpression states for the GA4GH VRS " f"Alleles corresponding to the GT indexes of the {info_field_desc} alleles" ), ) From aed34f1a03010a03d0a9ca8c7bae804f59986675 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 2 Dec 2025 19:27:59 -0500 Subject: [PATCH 34/41] Fix VCF annotations to match source changes --- tests/extras/data/test_vcf_expected_altsonly_output.vcf | 2 +- tests/extras/data/test_vcf_expected_output.vcf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/extras/data/test_vcf_expected_altsonly_output.vcf b/tests/extras/data/test_vcf_expected_altsonly_output.vcf index e316feb1..9b0e4e4d 100644 --- a/tests/extras/data/test_vcf_expected_altsonly_output.vcf +++ b/tests/extras/data/test_vcf_expected_altsonly_output.vcf @@ -234,7 +234,7 @@ ##INFO= ##INFO= ##INFO= -##INFO= +##INFO= #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663;VRS_Ends=82664;VRS_States=T;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284350;VRS_Ends=284366;VRS_States=AAAAAAAAAAAAAAA;VRS_Lengths=15;VRS_RepeatSubunitLengths=1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 diff --git a/tests/extras/data/test_vcf_expected_output.vcf b/tests/extras/data/test_vcf_expected_output.vcf index a1d5c151..dc54963c 100644 --- a/tests/extras/data/test_vcf_expected_output.vcf +++ b/tests/extras/data/test_vcf_expected_output.vcf @@ -234,7 +234,7 @@ ##INFO= ##INFO= ##INFO= -##INFO= +##INFO= #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.esmv8nARRRdSysDFuIErJxRAdUSVsWNE,ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663,82663;VRS_Ends=82664,82664;VRS_States=C,T;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.xgtXGA3ZkV1WgMc6eD9l64fX27S_TScW,ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284349,284350;VRS_Ends=284351,284366;VRS_States=CA,AAAAAAAAAAAAAAA;VRS_Lengths=2,15;VRS_RepeatSubunitLengths=2,1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 From 44af087ca37f99c8de7e92bddb2e5ef58d8705a7 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Tue, 2 Dec 2025 21:41:54 -0500 Subject: [PATCH 35/41] Clean up error in cassette --- ...00013.11:g.32331093_32331094dup-expected4].yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml index 704a864a..e61ad59e 100644 --- a/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml +++ b/tests/extras/cassettes/test_hgvs[NC_000013.11:g.32331093_32331094dup-expected4].yaml @@ -269,20 +269,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: {} - method: GET - uri: https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nucleotide&id=NC_000013.11&rettype=fasta&seq_start=32331093&seq_stop=32331094&tool=bioutils&email=biocommons-dev@googlegroups.com - response: - body: - string: '{"error":"API rate limit exceeded","api-key":"69.173.97.130","count":"4","limit":"3"} - - ' - headers: {} - status: - code: 429 - message: Too Many Requests - request: body: null headers: {} From 77cb9c75cb372ed9836252029d0e406b7dbfeb3f Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Fri, 12 Dec 2025 14:40:37 -0500 Subject: [PATCH 36/41] Remove unused vrs_data_key --- src/ga4gh/vrs/extras/annotator/vcf.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index d4bcf595..f80c2905 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -489,7 +489,6 @@ def _get_vrs_data( # Get VRS data for alts alts = record.alts or [] alleles = [f"{gnomad_loc}-{record.ref}-{a}" for a in [*alts]] - data = f"{record.chrom}\t{record.pos}\t{record.ref}\t{record.alts}" for allele in alleles: if "*" in allele: _logger.debug("Star allele found: %s", allele) @@ -501,7 +500,6 @@ def _get_vrs_data( allele_collection, vrs_field_data, assembly, - vrs_data_key=data, # TODO unused? vrs_attributes=vrs_attributes, require_validation=require_validation, ) From f3ce393bd10d1643ca1e8935ad441a1da3924c6e Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Fri, 12 Dec 2025 16:38:44 -0500 Subject: [PATCH 37/41] Update vcf.py to replace MAX_LITERAL_STATE_LENGTH with a RLE_SEQ_LIMIT specific to RLE that defaults to 50, and excludes sequence vals from INFO if over that --- src/ga4gh/vrs/extras/annotator/vcf.py | 54 +++++++++---------- .../test_vcf_expected_altsonly_output.vcf | 4 +- .../extras/data/test_vcf_expected_output.vcf | 4 +- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index f80c2905..3c022cbf 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -16,7 +16,7 @@ from ga4gh.vrs import VRS_VERSION, __version__ from ga4gh.vrs.dataproxy import _DataProxy from ga4gh.vrs.extras.translator import AlleleTranslator -from ga4gh.vrs.models import Allele, Range, sequenceString +from ga4gh.vrs.models import Allele, Range _logger = logging.getLogger(__name__) @@ -52,18 +52,10 @@ class FieldName(str, Enum): } ) -# Short State.sequence will be included in output VCF if <= this value, -# otherwise output will be emitted as the "." character. -MAX_LITERAL_STATE_LENGTH = 15 - - -def _sequence_value_for_info(sequence: str | sequenceString) -> str | None: - """Return a literal sequence suitable for INFO fields if it is short enough.""" - if not sequence: - return None - seq = getattr(sequence, "root", sequence) - seq_str = str(seq) - return seq_str if len(seq_str) <= MAX_LITERAL_STATE_LENGTH else None +# ReferenceLengthExpression .sequence values will be included in output VCF if +# length <= this value. This field is optional for RLE since it can be derived +# from the reference sequence. Set to None to always include the sequence. +RLE_SEQ_LIMIT = 50 def dump_alleles_to_pkl(alleles: list[Allele], output_pkl_path: Path) -> None: @@ -408,16 +400,13 @@ def _get_vrs_object( start = vrs_obj.location.start end = vrs_obj.location.end state = vrs_obj.state - - # State-specific fields state_type = state.type - alt = _sequence_value_for_info(getattr(state, "sequence", None)) - if state_type in ( - "ReferenceLengthExpression", - "LengthExpression", - ): - # For RLE and LE, populate length + if state_type == "LiteralSequenceExpression": + # Sequence is required + alt = state.sequence.root + elif state_type == "ReferenceLengthExpression": + # Length is required, sequence is optional length = state.length if length is None: err_msg = f"{state_type} requires a non-empty length: {vcf_coords}" @@ -425,13 +414,24 @@ def _get_vrs_object( if isinstance(length, Range): err_msg = f"{state_type} with Range length not supported for VCF annotation: {vcf_coords}" raise VcfAnnotatorError(err_msg) - # For RLE only, also populate repeatSubunitLength - if state_type == "ReferenceLengthExpression": - repeat_subunit_length = state.repeatSubunitLength - else: - if state_type != "LiteralSequenceExpression": - err_msg = f"Unsupported state type '{state_type}' for VCF annotation: {vcf_coords}" + repeat_subunit_length = state.repeatSubunitLength + # Only include sequence if within rle_seq_limit + if state.sequence is not None and ( + RLE_SEQ_LIMIT is None or length <= RLE_SEQ_LIMIT + ): + alt = state.sequence.root + elif state_type == "LengthExpression": + # Length is required, no sequence field + length = state.length + if length is None: + err_msg = f"{state_type} requires a non-empty length: {vcf_coords}" raise VcfAnnotatorError(err_msg) + if isinstance(length, Range): + err_msg = f"{state_type} with Range length not supported for VCF annotation: {vcf_coords}" + raise VcfAnnotatorError(err_msg) + else: + err_msg = f"Unsupported state type '{state_type}' for VCF annotation: {vcf_coords}" + raise VcfAnnotatorError(err_msg) vrs_field_data[FieldName.STARTS_FIELD].append(start) vrs_field_data[FieldName.ENDS_FIELD].append(end) diff --git a/tests/extras/data/test_vcf_expected_altsonly_output.vcf b/tests/extras/data/test_vcf_expected_altsonly_output.vcf index 9b0e4e4d..8d74d7ca 100644 --- a/tests/extras/data/test_vcf_expected_altsonly_output.vcf +++ b/tests/extras/data/test_vcf_expected_altsonly_output.vcf @@ -228,7 +228,7 @@ ##FORMAT= ##FORMAT= ##FORMAT= -##INFO= +##INFO= ##INFO= ##INFO= ##INFO= @@ -238,7 +238,7 @@ #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663;VRS_Ends=82664;VRS_States=T;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284350;VRS_Ends=284366;VRS_States=AAAAAAAAAAAAAAA;VRS_Lengths=15;VRS_RepeatSubunitLengths=1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 -chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289464;VRS_Ends=289466;VRS_States;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289464;VRS_Ends=289466;VRS_States=CACGCCTGTAATCCCA;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399;VRS_Ends=28946400;VRS_States=C;VRS_Lengths=.;VRS_RepeatSubunitLengths=. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490414;VRS_Ends=490416;VRS_States;VRS_Lengths=0;VRS_RepeatSubunitLengths=2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=.,54220023;VRS_Ends=.,54220024;VRS_States=,A;VRS_Lengths=.,.;VRS_RepeatSubunitLengths=.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 diff --git a/tests/extras/data/test_vcf_expected_output.vcf b/tests/extras/data/test_vcf_expected_output.vcf index dc54963c..fd781c5a 100644 --- a/tests/extras/data/test_vcf_expected_output.vcf +++ b/tests/extras/data/test_vcf_expected_output.vcf @@ -228,7 +228,7 @@ ##FORMAT= ##FORMAT= ##FORMAT= -##INFO= +##INFO= ##INFO= ##INFO= ##INFO= @@ -238,7 +238,7 @@ #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT HG001 chr19 82664 . C T 50 PASS platforms=2;platformnames=10X,PacBio;datasets=2;datasetnames=10XChromiumLR,CCS15kb_20kb;callsets=2;callsetnames=10XLRGATK,CCS15kb_20kbDV;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt;arbitrated=TRUE;difficultregion=hg38.segdups_sorted_merged,lowmappabilityall;VRS_Allele_IDs=ga4gh:VA.esmv8nARRRdSysDFuIErJxRAdUSVsWNE,ga4gh:VA.b9AIUegs1SOYO7nKY8l01yllkyUns-u4;VRS_Starts=82663,82663;VRS_Ends=82664,82664;VRS_States=C,T;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:154:0,0:0,0:120 chr19 284350 . CA C 50 PASS platforms=4;platformnames=Illumina,10X,PacBio,CG;datasets=4;datasetnames=HiSeqPE300x,10XChromiumLR,CCS15kb_20kb,CGnormal;callsets=5;callsetnames=HiSeqPE300xGATK,10XLRGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes;datasetsmissingcall=CCS15kb_20kb,IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;difficultregion=GRCh38_AllHomopolymers_gt6bp_imperfectgt10bp_slop5,GRCh38_SimpleRepeat_imperfecthomopolgt10_slop5;VRS_Allele_IDs=ga4gh:VA.xgtXGA3ZkV1WgMc6eD9l64fX27S_TScW,ga4gh:VA.a04jFsNg0bS0RMIWjKWSbwJS4_vp7S6x;VRS_Starts=284349,284350;VRS_Ends=284351,284366;VRS_States=CA,AAAAAAAAAAAAAAA;VRS_Lengths=2,15;VRS_RepeatSubunitLengths=2,1 GT:PS:DP:ADALL:AD:GQ 0/1:.:422:117,101:81,75:356 -chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.nqqTUy-a2gssemOmJb4CJv-HNuFAmGrO,ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289463,289464;VRS_Ends=289464,289466;VRS_States=T,;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 +chr19 289464 . T TCACGCCTGTAATCC 50 PASS platforms=4;platformnames=Illumina,PacBio,CG,10X;datasets=4;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR;callsets=6;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,CCS15kb_20kbDV,10XLRGATK;datasetsmissingcall=IonExome,SolidSE75bp;callable=CS_HiSeqPE300xGATK_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.nqqTUy-a2gssemOmJb4CJv-HNuFAmGrO,ga4gh:VA.ySvDptXfHB_9WEfu78v32DzBXJfwGgO7;VRS_Starts=289463,289464;VRS_Ends=289464,289466;VRS_States=T,CACGCCTGTAATCCCA;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 0/1:.:518:94,98:116,137:785 chr19 28946400 . T C 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_10XLRGATK_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_CCS15kb_20kbDV_filt,CS_CCS15kb_20kbGATK4_filt;VRS_Allele_IDs=ga4gh:VA.yPr2pVvJeWHDHarhzAvOCb5Cn9UMF6a5,ga4gh:VA.uV5O4M9zpiwk6sftOd-EDvtw_pkSAvdf;VRS_Starts=28946399,28946399;VRS_Ends=28946400,28946400;VRS_States=T,C;VRS_Lengths=1,.;VRS_RepeatSubunitLengths=1,. GT:PS:DP:ADALL:AD:GQ 1/1:.:874:0,275:115,378:502 chr19 490414 . ACT A 50 PASS platforms=5;platformnames=Illumina,PacBio,CG,10X,Solid;datasets=5;datasetnames=HiSeqPE300x,CCS15kb_20kb,CGnormal,10XChromiumLR,SolidSE75bp;callsets=7;callsetnames=HiSeqPE300xGATK,CCS15kb_20kbDV,CCS15kb_20kbGATK4,CGnormal,HiSeqPE300xfreebayes,10XLRGATK,SolidSE75GATKHC;datasetsmissingcall=IonExome;callable=CS_HiSeqPE300xGATK_callable,CS_CCS15kb_20kbDV_callable,CS_CCS15kb_20kbGATK4_callable,CS_CGnormal_callable,CS_HiSeqPE300xfreebayes_callable;filt=CS_10XLRGATK_filt;VRS_Allele_IDs=ga4gh:VA.aje4-hx7eihWndAwfhzNq_7CZV3bRMXf,ga4gh:VA.lok7a3lot_cvUyw626otpJi4yxk0X07v;VRS_Starts=490413,490414;VRS_Ends=490416,490416;VRS_States=ACT,;VRS_Lengths=3,0;VRS_RepeatSubunitLengths=3,2 GT:PS:DP:ADALL:AD:GQ 0/1:.:821:163,158:239,220:1004 chr19 54220024 . G *,A 50 PASS platforms=1;platformnames=PacBio;datasets=1;datasetnames=CCS15kb_20kb;callsets=1;callsetnames=CCS15kb_20kbGATK4;datasetsmissingcall=HiSeqPE300x,CCS15kb_20kb,10XChromiumLR,CGnormal,IonExome,SolidSE75bp;callable=CS_CCS15kb_20kbGATK4_callable;filt=CS_CCS15kb_20kbDV_filt,CS_10XLRGATK_filt,CS_HiSeqPE300xfreebayes_filt;difficultregion=HG001.hg38.300x.bam.bilkentuniv.010920.dups,hg38.segdups_sorted_merged;VRS_Allele_IDs=ga4gh:VA.LlmfhAC3gQlVQUwXWYiYjrn5V_K8vBz1,,ga4gh:VA.I7J3i1B36BACEUINcTwEh7uMv3I-PXT1;VRS_Starts=54220023,.,54220023;VRS_Ends=54220024,.,54220024;VRS_States=G,,A;VRS_Lengths=1,.,.;VRS_RepeatSubunitLengths=1,.,. GT:PS:DP:ADALL:AD:GQ 1/2:.:45:0,20,25:0,20,25:99 From 83f92960fbd08074fa7e50de0994ac5857a3e623 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Fri, 12 Dec 2025 16:46:29 -0500 Subject: [PATCH 38/41] Apply suggestions from code review Co-authored-by: Kori Kuzma --- src/ga4gh/vrs/normalize.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index 253c45b8..3d2f6732 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -138,7 +138,7 @@ def _normalize_allele(input_allele: models.Allele, data_proxy, rle_seq_limit=50) ival = (start.value, end.value) start_pos_type = start.pos_type end_pos_type = end.pos_type - alt_seq = input_allele.state.sequence.root if input_allele.state.sequence else "" + alt_seq = input_allele.state.sequence.root or "" alleles = (None, alt_seq) # 1: trim shared flanking sequence @@ -150,7 +150,7 @@ def _normalize_allele(input_allele: models.Allele, data_proxy, rle_seq_limit=50) trim_alt_seq = trim_alleles[1] len_trimmed_ref = len(trim_ref_seq) len_trimmed_alt = len(trim_alt_seq) - seed_length = len_trimmed_ref if len_trimmed_ref else len_trimmed_alt + seed_length = len_trimmed_ref or len_trimmed_alt identity_case = trim_ref_seq == trim_alt_seq new_allele: models.Allele = pydantic_copy(input_allele) @@ -233,7 +233,7 @@ def _normalize_allele(input_allele: models.Allele, data_proxy, rle_seq_limit=50) return new_allele -def _trim_for_normalization(ref_seq, ival, alleles, start, end): +def _trim_for_normalization(ref_seq: SequenceProxy, ival: tuple[int, int], alleles: tuple[None, str], start: LocationPos, end: LocationPos): """Trim common prefix and suffix from the intervals. Return the trimmed interval and trimmed alleles: @@ -261,7 +261,8 @@ def _trim_for_normalization(ref_seq, ival, alleles, start, end): return trim_ival, trim_alleles -def _set_location_from_interval(allele, ival, start_pos_type, end_pos_type): +def _set_location_from_interval(allele: models.Allele, ival: tuple[int, int], start_pos_type: PosType, end_pos_type: PosType) -> None: +"""Update ``allele`` start and end location""" allele.location.start = _get_new_allele_location_pos(ival[0], start_pos_type) allele.location.end = _get_new_allele_location_pos(ival[1], end_pos_type) From a52ec24c39875a3d4164411e18e1769c669feef2 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Fri, 12 Dec 2025 16:43:26 -0500 Subject: [PATCH 39/41] Use enumerated sequence types in vcf.py --- src/ga4gh/vrs/extras/annotator/vcf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ga4gh/vrs/extras/annotator/vcf.py b/src/ga4gh/vrs/extras/annotator/vcf.py index 3c022cbf..37f0d475 100644 --- a/src/ga4gh/vrs/extras/annotator/vcf.py +++ b/src/ga4gh/vrs/extras/annotator/vcf.py @@ -13,7 +13,7 @@ VrsObjectIdentifierIs, use_ga4gh_compute_identifier_when, ) -from ga4gh.vrs import VRS_VERSION, __version__ +from ga4gh.vrs import VRS_VERSION, VrsType, __version__ from ga4gh.vrs.dataproxy import _DataProxy from ga4gh.vrs.extras.translator import AlleleTranslator from ga4gh.vrs.models import Allele, Range @@ -402,10 +402,10 @@ def _get_vrs_object( state = vrs_obj.state state_type = state.type - if state_type == "LiteralSequenceExpression": + if state_type == VrsType.LIT_SEQ_EXPR: # Sequence is required alt = state.sequence.root - elif state_type == "ReferenceLengthExpression": + elif state_type == VrsType.REF_LEN_EXPR: # Length is required, sequence is optional length = state.length if length is None: @@ -420,7 +420,7 @@ def _get_vrs_object( RLE_SEQ_LIMIT is None or length <= RLE_SEQ_LIMIT ): alt = state.sequence.root - elif state_type == "LengthExpression": + elif state_type == VrsType.LEN_EXPR: # Length is required, no sequence field length = state.length if length is None: From 938e3e0e2323c1e116a648cf406bafd5f0721cf3 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Fri, 12 Dec 2025 16:48:24 -0500 Subject: [PATCH 40/41] Update src/ga4gh/vrs/normalize.py Co-authored-by: Kori Kuzma --- src/ga4gh/vrs/normalize.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index 3d2f6732..238c5a79 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -329,19 +329,6 @@ def _is_valid_cycle(template_start, template, target): return True -def _smallest_cycle_length(seq: str) -> int: - """Return the smallest cycle length that can generate `seq` (partial final copy allowed).""" - if not seq: - return 0 - n = len(seq) - for cycle_length in range(1, n + 1): - pattern = seq[:cycle_length] - repeat_count, remainder = divmod(n, cycle_length) - if pattern * repeat_count + pattern[:remainder] == seq: - return cycle_length - return n - - # TODO _normalize_genotype? From 2234438a50944f564a9913f9cac13fe9f37b6af6 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Fri, 12 Dec 2025 16:50:22 -0500 Subject: [PATCH 41/41] Fix formatting --- src/ga4gh/vrs/normalize.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/ga4gh/vrs/normalize.py b/src/ga4gh/vrs/normalize.py index 238c5a79..f899faf2 100644 --- a/src/ga4gh/vrs/normalize.py +++ b/src/ga4gh/vrs/normalize.py @@ -233,7 +233,13 @@ def _normalize_allele(input_allele: models.Allele, data_proxy, rle_seq_limit=50) return new_allele -def _trim_for_normalization(ref_seq: SequenceProxy, ival: tuple[int, int], alleles: tuple[None, str], start: LocationPos, end: LocationPos): +def _trim_for_normalization( + ref_seq: SequenceProxy, + ival: tuple[int, int], + alleles: tuple[None, str], + start: LocationPos, + end: LocationPos, +): """Trim common prefix and suffix from the intervals. Return the trimmed interval and trimmed alleles: @@ -261,8 +267,13 @@ def _trim_for_normalization(ref_seq: SequenceProxy, ival: tuple[int, int], allel return trim_ival, trim_alleles -def _set_location_from_interval(allele: models.Allele, ival: tuple[int, int], start_pos_type: PosType, end_pos_type: PosType) -> None: -"""Update ``allele`` start and end location""" +def _set_location_from_interval( + allele: models.Allele, + ival: tuple[int, int], + start_pos_type: PosType, + end_pos_type: PosType, +) -> None: + """Update ``allele`` start and end location""" allele.location.start = _get_new_allele_location_pos(ival[0], start_pos_type) allele.location.end = _get_new_allele_location_pos(ival[1], end_pos_type)